forked from reactioncommerce/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.08 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "reaction-cli",
"version": "0.0.0-development",
"description": "A command line client for creating and managing Open Commerce projects",
"main": "index.js",
"bin": {
"reaction": "index.js"
},
"engines": {
"node": ">=14.18.1"
},
"type": "module",
"scripts": {
"test": "node --experimental-json-modules --no-warnings node_modules/mocha/bin/_mocha ./tests/*.* --full-trace",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "[email protected]:reactioncommerce/cli.git"
},
"author": "[email protected]",
"license": "Apache-2.0",
"dependencies": {
"chai": "^4.3.6",
"chalk": "^5.0.1",
"change-case": "^4.1.2",
"command-exists": "^1.2.9",
"commander": "^8.3.0",
"compare-versions": "^4.1.3",
"concat-stream": "^2.0.0",
"configstore": "^6.0.0",
"diehard": "^1.5.2",
"envalid": "^7.3.1",
"envfile": "^6.17.0",
"fs-extra": "^10.1.0",
"inquirer": "^9.0.0",
"is-ci": "^3.0.1",
"jest": "^28.1.1",
"meant": "^2.0.1",
"node-fetch": "^3.2.10",
"prompts": "^2.4.2",
"public-ip": "^5.0.0",
"rimraf": "^3.0.2",
"simple-git": "^3.5.0",
"sinon": "^14.0.0",
"sync-fetch": "^0.3.1",
"update-notifier": "^6.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.7.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"fetch-mock": "^9.11.0",
"husky": "^8.0.1",
"mocha": "^9.1.3",
"semantic-release": "^18.0.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"prettier": {
"arrowParens": "always"
},
"release": {
"branches": [
"trunk"
]
},
"publishConfig": {
"access": "public"
}
}