-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.64 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.64 KB
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
{
"name": "react-safe-component",
"version": "1.0.2",
"description": "A starter place for nice react modules.",
"main": "lib",
"scripts": {
"coverage": "node_modules/.bin/babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha --",
"test": "npm run mocha",
"mocha": "node_modules/.bin/_mocha --compilers js:babel-core/register",
"compile": "node_modules/.bin/babel --presets es2015,stage-0 -d lib/ src/",
"build": "./node_modules/.bin/webpack",
"prepublish": "npm run test && npm run compile && npm run build",
"eslint": "./node_modules/.bin/eslint src/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aloompa/react-safe-component.git"
},
"author": "Aloompa",
"license": "MIT",
"bugs": {
"url": "https://github.com/Aloompa/react-safe-component/issues"
},
"homepage": "https://github.com/Aloompa/react-safe-component#readme",
"devDependencies": {
"acorn": "^6.1.1",
"babel-cli": "^6.1.18",
"babel-core": "^6.2.1",
"babel-eslint": "^10.0.1",
"babel-istanbul": "^0.5.9",
"babel-loader": "^6.1.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"mocha": "^2.3.3",
"questy": "^1.1.0",
"react-addons-test-utils": "^0.14.3",
"react-test-renderer": "^16.8.6",
"webpack": "^1.12.6"
},
"dependencies": {
"debug": "^2.2.0",
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}