-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
85 lines (85 loc) · 2.32 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
{
"name": "robe-react-commons",
"version": "1.0.89",
"description": "Robe React Commons",
"main": "lib/index.js",
"scripts": {
"test": "node ./config/server/start.js 3000 & jest && killall node",
"lint": "grunt lint",
"testd": "node ./config/server/start.js 3000 & jest --config ./config/jest.dev.json --watch && grunt lint && killall node",
"codecov": "cat coverage/*/lcov.info | codecov",
"docs": "node ./config/prebuild.js ./docs & ./node_modules/.bin/esdoc -c esdoc.json",
"build": "node ./config/prebuild.js ./lib & babel ./src --out-dir ./lib --copy-files"
},
"keywords": [
"react",
"es6",
"jest",
"eslint",
"flowtype",
"chai",
"istanbul",
"esdocs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/robeio/robe-react-commons.git"
},
"license": "MIT",
"devDependencies": {
"app-root-path": "2.0.1",
"babel-cli": "6.24.0",
"babel-eslint": "7.2.1",
"babel-plugin-transform-async-to-generator": "6.22.0",
"babel-preset-es2015": "6.24.0",
"babel-preset-react": "6.23.0",
"babel-preset-stage-0": "6.22.0",
"chai": "3.5.0",
"eslint": "3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-import-resolver-webpack": "0.8.1",
"eslint-loader": "1.7.1",
"eslint-plugin-flowtype": "2.30.4",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.3",
"grunt": "1.0.1",
"grunt-eslint": "19.0.0",
"jest": "19.0.2",
"load-grunt-tasks": "3.5.2",
"react-addons-test-utils": "15.4.2",
"robe-json-server": "0.8.19",
"webpack": "1.14.0",
"react": "15.4.2",
"react-addons-shallow-compare": "15.4.2",
"react-cookie": "1.0.5",
"react-dom": "15.4.2"
},
"dependencies": {
"is-js": "0.1.1",
"js-criteria": "1.0.6",
"robe-ajax": "1.0.1"
},
"jest": {
"automock": false,
"bail": true,
"testRegex": "/__test__/.*\\.spec\\.jsx?$",
"setupTestFrameworkScriptFile": "<rootDir>/config/jest.setup.jasmine.js",
"collectCoverage": true,
"modulePaths": [
"src"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components"
],
"coveragePathIgnorePatterns": [
"TestUtils.js",
"jest.setup.jasmine.js"
]
}
}