-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.29 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
{
"name": "reactorx",
"version": "0.6.5",
"description": "CSP Reactive flux implementation",
"author": {
"name": "Juan B. Rodriguez"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jbrodriguez/reactorx.git"
},
"keywords": [
"flux",
"react",
"csp"
],
"main": "lib/reactorx.js",
"scripts": {
"compile": "babel --presets es2015,stage-2 --plugins transform-runtime -d lib/ src/",
"clean": "rimraf lib && rimraf tmp",
"test": "npm run compile && mocha --compilers js:babel-core/register --recursive",
"prepublish": "npm run compile"
},
"dependencies": {
"js-csp": "github:jbrodriguez/js-csp#25e3c39"
},
"devDependencies": {
"babel-cli": "6.11.4",
"babel-core": "6.11.4",
"babel-plugin-transform-runtime": "6.12.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-stage-2": "6.11.0",
"babel-runtime": "6.11.6",
"chai": "3.5.0",
"mocha": "2.5.3",
"rimraf": "2.5.4"
},
"bugs": {
"url": "https://github.com/jbrodriguez/reactorx/issues"
},
"homepage": "https://github.com/jbrodriguez/reactorx",
"maintainers": [
{
"name": "jbrodriguez"
}
],
"files": [
"lib",
"CHANGES",
"LICENSE",
"reactorx-chart.png",
"README.md",
"VERSION"
]
}