-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.45 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
{
"name": "@21epub/create-parcel-react-library",
"version": "0.2.0",
"description": "CLI for easily bootstrapping ts react libraries and run demo using parcel",
"repository": "21epub/create-parcel-react-library",
"author": "garry",
"main": "index.js",
"license": "MIT",
"engines": {
"node": ">=10"
},
"bin": {
"create-parcel-react-library": "index.js"
},
"scripts": {
"test": "ava -v && standard *.js lib/*.js",
"release": "git fetch --tags && npx standard-version",
"release:alpha": "npm run release -- --prerelease alpha"
},
"keywords": [
"react",
"npm",
"typescript",
"library",
"module",
"package",
"parcel",
"cli",
"rollup",
"babel",
"publish"
],
"dependencies": {
"chalk": "^3.0.0",
"commander": "^5.0.0",
"conf": "^2.2.0",
"cp-file": "^6.0.0",
"execa": "^4.0.0",
"git-config-path": "^2.0.0",
"github-username": "^5.0.1",
"globby": "^11.0.0",
"handlebars": "^4.7.4",
"inquirer": "^7.1.0",
"make-dir": "^3.0.2",
"ora": "^4.0.3",
"p-each-series": "^2.1.0",
"parse-git-config": "^3.0.0",
"validate-npm-package-name": "^3.0.0",
"which": "^2.0.2"
},
"devDependencies": {
"ava": "^3.5.2",
"rmfr": "^2.0.0",
"standard": "^14.3.3"
},
"ava": {
"failFast": true,
"timeout": "10m",
"files": [
"index.test.js",
"lib/**/*.test.js"
]
},
"files": [
"template",
"lib"
]
}