forked from maxwfreu/create-npm-react-package
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 834 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 834 Bytes
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
{
"name": "create-npm-react-package",
"version": "1.1.5",
"description": "Easily create npm react components",
"main": "src/index.js",
"homepage": "https://github.com/maxwfreu/create-npm-react-package",
"scripts": {
"test": "nyc --reporter=lcov mocha tests/*.test.js"
},
"author": "Max Freundlich",
"keywords": [
"react",
"npm",
"package",
"cli",
"boilerplate"
],
"license": "ISC",
"bin": {
"create-npm-react-package": "./src/index.js"
},
"dependencies": {
"ncp": "^2.0.0"
},
"directories": {
"test": "test"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"sinon": "^7.4.1",
"sinon-chai": "^3.3.0"
}
}