-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.07 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
{
"name": "reactors",
"version": "4.2.18",
"description": "View components and APIs that work web, mobile and desktop!",
"main": "dist/index.js",
"keywords": [
"reactors",
"react",
"react-native",
"app",
"mobile",
"web",
"android",
"ios",
"mac osx",
"window",
"linux",
"ubuntu",
"desktop",
"electron",
"native",
"hybrid",
"awesome"
],
"repository": {
"type": "git",
"url": "https://github.com/co2-git/reactors"
},
"scripts": {
"babel": "rm -rf dist; babel --out-dir dist/ app/",
"babel:watch": "rm -rf dist; babel --watch --out-dir dist/ app/",
"eslint": "eslint app",
"flow": "flow",
"prepublishOnly": "npm run eslint && yarn babel && yarn test",
"prepush": "npm run eslint && npm test",
"push": "npm run babel && npm run prepush && npm publish",
"jest": "jest --colors --notify --verbose",
"test": "rm -rf test; babel --out-dir test _test_; describe-react test/API/*/*.spec.js"
},
"author": {
"name": "francois",
"github": "https://github.com/co2-git"
},
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-plugin-syntax-async-functions": "^6.8.0",
"babel-plugin-transform-regenerator": "^6.9.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"enzyme": "^2.7.1",
"eslint": "^2.11.1",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-react": "^5.1.1",
"eslint-plugin-react-native": "^1.1.0-beta",
"flow-bin": "^0.36.0",
"husky": "^0.13.1",
"jest": "^18.1.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-test-renderer": "^15.4.2",
"should": "^11.2.0",
"sinon": "^1.17.7"
},
"dependencies": {
"@francoisv/describe-react": "^0.1.53",
"css-property-parser": "^1.0.5",
"electron-notifications": "^0.1.4",
"nedb": "^1.8.0"
},
"jest": {
"preset": "react-native"
}
}