-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
78 lines (78 loc) · 2.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
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": "react-component-template",
"version": "0.1.10",
"description": "React component",
"main": "lib/index.js",
"bin": {
"react-component-template": "cli.js"
},
"config": {
"component": "ReactComponentTemplate"
},
"scripts": {
"start": "p-s",
"test": "npm start test",
"precommit": "npm start precommit",
"prepush": "npm start prepush",
"postversion": "npm start postversion"
},
"repository": {
"type": "git",
"url": "https://github.com/nkbt/react-component-template.git"
},
"keywords": [
"component",
"react-component",
"react"
],
"author": "Nik Butenko <[email protected]> (http://butenko.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nkbt/react-component-template/issues"
},
"homepage": "https://github.com/nkbt/react-component-template",
"dependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-istanbul": "0.12.2",
"babel-loader": "7.0.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"codecov": "2.1.0",
"cross-env": "4.0.0",
"css-loader": "0.28.0",
"css-modules-require-hook": "4.0.6",
"eslint": "3.19.0",
"eslint-plugin-react": "6.10.3",
"gh-pages": "0.12.0",
"glob": "7.1.1",
"html-webpack-plugin": "2.28.0",
"husky": "0.13.3",
"nightwatch-autorun": "3.1.0",
"p-s": "3.1.0",
"react": "15.5.4",
"react-dom": "15.5.4",
"rimraf": "2.6.1",
"sinon": "2.1.0",
"style-loader": "0.16.1",
"tap-nyan": "1.1.0",
"tap-xunit": "1.7.0",
"tape": "4.6.3",
"webpack": "2.4.1",
"webpack-dev-server": "2.4.4"
},
"files": [
"/test/index.js",
"/test-e2e/Smoketest.js",
"/.eslintrc",
"/cli.js",
"/nightwatch.json",
"/package-scripts.js",
"/README.md",
"/webpack.config.js"
]
}