-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.72 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.72 KB
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
{
"name": "queue-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"await-sleep": "0.0.1",
"aws-sdk": "^2.1354.0",
"bunyan": "^1.8.12",
"dockerode": "^2.5.3",
"git-rev": "^0.2.1",
"kill-switch": "^2.0.0",
"node-fetch": "^2.6.7",
"queue": "^4.4.2",
"request": "^2.83.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/aws-sdk": "^2.7.0",
"@types/mocha": "^7.0.1",
"@types/node": "^13.1.0",
"@types/node-fetch": "^2.5.0",
"@types/request": "^2.48.3",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.23.0",
"coveralls": "^3.0.6",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"should": "^13.1.3",
"source-map-support": "^0.5.13",
"standardx": "^5.0.0",
"ts-node": "^8.10.1",
"typescript": "^3.6.3"
},
"scripts": {
"start": "node index.js",
"deploy": "git pull && npm i && npm run kill",
"kill": "kill-switch",
"test": "tsc && npm run lint && mocha",
"lint": "standardx src/*.ts && standard *.js",
"coverage": "nyc mocha",
"watch-ts": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/violinist-dev/queue-starter.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/violinist-dev/queue-starter/issues"
},
"homepage": "https://github.com/violinist-dev/queue-starter#readme",
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
],
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
}
}
}