-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.36 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
52
{
"name": "@fizzmod/react-library-generator",
"version": "1.0.6",
"description": "Generates react library template",
"main": "index.js",
"bin": {
"react-library-generator": "index.js"
},
"scripts": {
"test": "export TEST_ENV=true; mocha --exit -R nyan --recursive tests/",
"test-ci": "nyc --reporter=html --reporter=text mocha --recursive tests/",
"watch-test": "export TEST_ENV=true; mocha --exit -R nyan -w --recursive tests/",
"coverage": "nyc npm test",
"lint": "eslint index.js lib/ tests/"
},
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/fizzmod/react-library-generator.git"
},
"author": "",
"license": "ISC",
"homepage": "https://github.com/fizzmod/react-library-generator#readme",
"dependencies": {
"chalk": "^3.0.0",
"child_process": "^1.0.2",
"fs-extra": "^8.1.0",
"lodash": "^4.17.15",
"ncp": "^2.0.0",
"prompts": "^2.3.0",
"recursive-readdir": "^2.2.2",
"tmp-promise": "^2.0.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"husky": "^4.2.3",
"mocha": "^7.0.1",
"mock-fs": "^4.10.4",
"mock-require": "^3.0.3",
"nyc": "^15.0.0",
"sinon": "^9.0.0"
},
"files": [
"lib/",
"template/"
],
"directories": {
"test": "tests"
}
}