-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "oneflow",
"version": "0.8.2",
"description": "oneflow desciption",
"author": "Zipeng WU",
"license": "MIT",
"main": "build/index.js",
"scripts": {
"build": "babel src -d build",
"prepublish": "npm run build",
"test": "mocha -r .jsdom.js -r babel-register src/*.spec.js",
"test:watch": "mocha -w -r .jsdom.js -r babel-register src/*.spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/zipengwu/oneflow.git"
},
"keywords": [
"react",
"rx",
"flow",
"stream",
"redux",
"flux"
],
"dependencies": {
"react": "^15.4.1",
"rxjs": "^5.0.2"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.17.0",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"enzyme": "^2.6.0",
"jsdom": "^9.6.0",
"mocha": "^3.1.2",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"sinon": "^2.0.0-pre.4"
}
}