-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
70 lines (70 loc) · 1.7 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
{
"name": "opspark",
"version": "4.0.0-1",
"description": "A node utility supporting installation and configuration of operation spark projects",
"main": "index.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"dev": "nodemon test-server.js",
"test": "mocha ./test",
"test:publish": "act release -W .github/workflows/npm-publish.yml"
},
"repository": {
"type": "git",
"url": "https://github.com/OperationSpark/opspark.git"
},
"keywords": [
"opspark"
],
"author": "jfraboni",
"license": "MIT",
"bugs": {
"url": "https://github.com/OperationSpark/opspark/issues"
},
"homepage": "https://github.com/OperationSpark/opspark",
"preferGlobal": true,
"bin": {
"opspark": "index.js",
"os": "index.js"
},
"dependencies": {
"async": "^0.9.0",
"bdd-stdin": "^0.2.0",
"bluebird": "^2.9.26",
"bluebird-q": "^1.0.3",
"body-parser": "^1.17.2",
"change-case": "^2.2.0",
"cheerio": "^0.22.0",
"cli-color": "^2.0.1",
"commander": "^2.11.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.1",
"express": "^4.15.3",
"fs-extra": "^11.2.0",
"inquirer": "^0.8.0",
"jquery": "^3.3.1",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"nodemon": "^2.0.19",
"octokit": "^3.1.2",
"process": "^0.11.10",
"prompt": "^1.3.0",
"q": "^1.3.0",
"request-promise": "^4.2.1",
"rimraf": "^2.2.8"
},
"devDependencies": {
"chai": "^2.2.0",
"eslint": "^4.1.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.6.1",
"mocha": "^5.2.0",
"mock-stdin": "^0.3.0",
"mockery": "^1.4.0",
"proxyquire": "^1.5.0",
"should": "^5.2.0",
"sinon": "^4.0.0"
}
}