-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.61 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
{
"name": "@cerebral/react",
"version": "0.0.0-next",
"description": "React view for Cerebral",
"main": "index.js",
"author": "Christian Alfoni <christianalfoni@gmail.com>",
"contributors": [
"Aleksey Guryanov <gurianov@gmail.com>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cerebral/cerebral.git"
},
"bugs": {
"url": "https://github.com/cerebral/cerebral/issues"
},
"homepage": "http://cerebral.github.io/cerebral-website",
"dependencies": {
"cerebral": "5.2.1"
},
"scripts": {
"build": "cross-env BABEL_ENV=production babel src/ --out-dir=lib/ -s",
"coverage": "nyc --reporter=lcov --reporter=json npm run test",
"prepublish": "npm run build",
"test": "NODE_ENV=test mocha -r test/setup --require babel-register \"src/**/*.test.js\" \"test/**/*.test.js\"",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"cross-env": "^5.0.0",
"babel-cli": "6.24.1",
"babel-core": "^6.24.1",
"babel-jest": "^22.0.6",
"babel-plugin-inferno": "^4.0.0",
"babel-plugin-transform-builtin-extend": "1.1.2",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-version-transform": "^1.0.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-preact": "1.1.0",
"babel-preset-react": "^6.24.1",
"babel-preset-typescript": "^7.0.0-alpha.19",
"babel-register": "^6.23.0",
"babel-watch": "2.0.5"
},
"nyc": {
"exclude": [
"node_modules",
"lib",
"tests",
"**/*.test.js",
"**/testHelper.js"
]
}
}