-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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
{
"name": "@apostrophecms/cli",
"version": "3.5.0",
"description": "Commandline generator and configurator for Apostrophe CMS",
"main": "bin/apostrophe",
"scripts": {
"test": "npx eslint .",
"preuninstall": "node ./scripts/remove-conf"
},
"author": "Apostrophe Technologies, Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/apostrophecms/cli.git"
},
"dependencies": {
"colors": "1.4.0",
"commander": "^5.1.0",
"common-tags": "^1.8.0",
"conf": "^6.2.4",
"lodash": "^4.17.20",
"ora": "^5.4.1",
"package-json": "^6.5.0",
"pkginfo": "^0.4.1",
"prompts": "^2.3.2",
"semver": "^7.3.2",
"shell-quote": "^1.8.1",
"shelljs": "~0.3.x",
"sync-request": "^6.0.0",
"uuid": "^8.0.0"
},
"devDependencies": {
"eslint": "^7.31.0",
"eslint-config-apostrophe": "^3.4.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0"
},
"preferGlobal": true,
"bin": {
"apostrophe": "bin/apostrophe",
"apos": "bin/apostrophe"
}
}