-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.19 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
{
"name": "react-npm-component-boilerplate",
"version": "3.0.0",
"description": "Simple react npm package boilerplate.",
"repository": {
"type": "git",
"url": "https://github.com/lindgr3n/react-npm-component-boilerplate.git"
},
"scripts": {
"prepublish": "npm run lint && npm run test",
"test": "jest",
"lint": "eslint ./src"
},
"author": "Johan Lindgren",
"license": "MIT",
"bugs": {
"url": "https://github.com/lindgr3n/react-npm-component-boilerplate/issues"
},
"homepage": "https://github.com/lindgr3n/react-npm-component-boilerplate",
"keywords": [
"react",
"react-component",
"boilerplate",
"npm",
"module",
"template",
"webpack",
"HMR",
"Jest"
],
"bin": {
"react-npm-component-boilerplate": "bin/index.js"
},
"preferGlobal": true,
"dependencies": {
"chalk": "^2.3.0",
"commander": "^2.9.0",
"fs-extra": "^4.0.2",
"path": "^0.12.7"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"eslint": "^4.9.0",
"eslint-plugin-react": "^7.4.0",
"jest": "^21.2.1"
},
"jest": {
"modulePathIgnorePatterns": [
"react-npm-component-boilerplate",
"node_modules"
]
}
}