-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
115 lines (115 loc) · 2.88 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "qubit-cli",
"version": "1.78.0",
"description": "Qubit command line interface",
"main": "src/index.js",
"bin": {
"qubit": "bin/qubit.js"
},
"directories": {
"test": "test"
},
"docpress": {
"github": "qubitdigital/qubit-cli",
"dist": "docs"
},
"scripts": {
"prepublishOnly": "node bin/tasks syncVersions --commit",
"pretest": "npm install --ignore-scripts && NODE_ENV=test node bin/tasks installQubitDeps --dev",
"test": "NODE_ENV=test nyc --reporter=lcov --reporter=text-summary mocha --recursive",
"lint": "standard",
"format": "prettier-standard",
"createInstallPrivatePackages": "node bin/tasks createInstallPrivatePackages"
},
"author": "Alan Clarke <[email protected]> (qubit.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/qubitdigital/qubit-cli.git"
},
"engines": {
"node": ">=8.6"
},
"engineStrict": true,
"license": "ISC",
"dependencies": {
"@inkohx/git-time": "^0.0.1",
"axios": "^0.24.0",
"b2a": "^1.0.11",
"body-parser": "^1.18.2",
"chalk": "^2.1.0",
"commander": "^2.11.0",
"config": "^1.26.2",
"confirmer": "^1.1.1",
"cookieman": "^1.2.0",
"cors": "^2.8.4",
"devcert": "^1.2.2",
"diff": "^3.4.0",
"driftwood": "^1.5.0",
"event-kitten": "^1.1.0",
"exec-root": "^1.0.9",
"execa": "^0.8.0",
"express": "^4.16.2",
"form-data": "^2.3.2",
"fs-extra": "^11.1.0",
"has-yarn": "^1.0.0",
"input": "^1.0.1",
"js-yaml": "^3.13.1",
"json-loader": "^0.5.7",
"jsonwebtoken": "^8.1.1",
"less": "^3.0.0",
"less-loader": "^5.0.0",
"lodash": "^4.17.20",
"micro-amd": "^1.2.3",
"ms": "^2.0.0",
"now-plus": "^1.0.3",
"np": "^2.18.3",
"opn": "^5.1.0",
"p-map": "^1.2.0",
"p-memoize": "^4.0.1",
"preact": "^8.2.6",
"promise-defer": "^1.0.0",
"qs": "^6.5.1",
"qubit-react": "^1.4.0",
"raw-loader": "^0.5.1",
"semverbs": "^1.1.1",
"serve-favicon": "^2.5.0",
"server-destroy": "^1.0.1",
"slapdash": "^1.3.3",
"slash": "^1.0.0",
"style-loader": "^0.19.0",
"sync-p": "^1.1.3",
"terminal-kit": "^1.26.2",
"update-notifier": "^2.3.0",
"urlite": "^2.0.0",
"webpack": "^3.12.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.19.1",
"windosu": "^0.3.0"
},
"standard": {
"ignore": [
"/src/templates/placement.js"
],
"globals": [
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach"
]
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.0.0",
"nyc": "^14.1.1",
"prettier-standard": "^15.0.0",
"rewire": "^4.0.1",
"sinon": "^9.0.3",
"standard": "^16.0.3"
},
"bugs": {
"url": "https://github.com/qubitdigital/qubit-cli/issues"
},
"homepage": "https://github.com/qubitdigital/qubit-cli#readme"
}