-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.71 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "linear-constraints",
"version": "1.0.0",
"description": "An example of a reactive constraint library using active expressions",
"main": "dist/linear-constraints.js",
"jsnext:main": "src/linear-constraints.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "npm run rollup && npm run karma",
"rollup": "npm run rollup1 && npm run rollup2 && npm run rollup3",
"rollup1": "rollup -c rollup.config.pre-babel.js",
"rollup2": "cd test/temp && babel pre-babel.js --out-file post-babel.js && cd ../..",
"rollup3": "rollup -c rollup.config.post-babel.js",
"karma": "karma start --single-run",
"__old-test__": "mocha-phantomjs run-tests.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/active-expressions/linear-constraints.git"
},
"keywords": [
"reactive",
"view",
"query",
"dataflow",
"declarative",
"events"
],
"author": {
"name": "Stefan Ramson",
"email": "[email protected]",
"url": "http://active-expressions.github.io/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/active-expressions/linear-constraints/issues"
},
"homepage": "https://github.com/active-expressions/linear-constraints#readme",
"devDependencies": {
"babel": "^6.0.15",
"babel-cli": "^6.11.4",
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-es2015-rollup": "^1.2.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.9.0",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"chai-shallow-deep-equal": "^1.3.0",
"chai-subset": "^0.3.0",
"chokidar-cli": "^1.2.0",
"es6-collections": "^0.5.6",
"es6-module-loader": "^0.17.11",
"exports-loader": "^0.6.3",
"imports-loader": "^0.6.5",
"istanbul-instrumenter-loader": "^0.2.0",
"jsdoc": "^3.4.0",
"json-loader": "^0.5.4",
"karma": "^1.2.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-browserify": "^5.0.4",
"karma-chai": "^0.1.0",
"karma-chai-plugins": "^0.7.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^0.1.2",
"karma-commonjs": "^1.0.0",
"karma-coverage": "^1.0.0",
"karma-firefox-launcher": "^0.1.7",
"karma-ie-launcher": "^0.2.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.1.0",
"karma-opera-launcher": "^0.3.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-requirejs": "^1.0.0",
"karma-safari-launcher": "^0.1.1",
"karma-sinon": "^1.0.5",
"karma-sinon-chai": "^1.2.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-systemjs": "^0.14.0",
"karma-webpack": "^1.7.0",
"mocha": "^3.0.2",
"mocha-phantomjs": "^3.6.0",
"node-static": "^0.7.7",
"phantomjs": "1.9.7-15",
"phantomjs-prebuilt": "^2.1.7",
"require": "^2.4.20",
"requirejs": "^2.2.0",
"rollem": "^1.2.0",
"rollup": "^0.34.8",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "^3.3.1",
"rollup-plugin-multi-entry": "^2.0.1",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-watch": "^2.5.0",
"sinon": "^2.1.0",
"sinon-chai": "^2.8.0",
"smap": "^0.2.0",
"systemjs": "^0.19.31",
"systemjs-plugin-babel": "0.0.12",
"watchify": "^3.7.0",
"webpack": "^1.13.0",
"webpack-config": "^5.2.1"
},
"dependencies": {
"aexpr-source-transformation-propagation": "1.6.0",
"aexpr-trigger": "1.1.0",
"babel-plugin-aexpr-source-transformation": "2.3.10",
"babel-plugin-always-constraint": "1.0.1",
"dwarfcassowary": "^1.0.1"
}
}