-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
64 lines (64 loc) · 1.43 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
{
"name": "create-surgio-store",
"version": "3.1.0",
"description": "Surgio store starter kit",
"bin": {
"create-surgio-store": "./index.js"
},
"files": [
"template",
"createSurgioStore.js",
"index.js",
"README.md"
],
"scripts": {
"test": "yarn test:lint && yarn test:e2e",
"test:lint": "eslint .",
"test:e2e": "ava",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"release": "bumpp && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geekdada/create-surgio-store.git"
},
"keywords": [
"surgio"
],
"author": "Roy Li <me@royli.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/geekdada/create-surgio-store/issues"
},
"homepage": "https://surgio.royli.dev",
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/fs-extra": "^9.0.13",
"ava": "^4.0.1",
"bumpp": "^9.1.1",
"coffee": "^5.4.0",
"conventional-changelog-cli": "^2.0.34",
"eslint": "^7.4.0",
"prettier": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"bluebird": "^3.7.2",
"chalk": "^4.1.0",
"commander": "^5.1.0",
"cross-spawn": "^7.0.3",
"fs-extra": "^9.0.1",
"handlebars": "^4.7.6",
"inquirer": "^7.3.2"
},
"ava": {
"failFast": true,
"files": [
"test/**/*.test.js"
],
"workerThreads": false,
"timeout": "10m"
}
}