-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
{
"name": "netflix-conductor-utilities",
"version": "0.8.10",
"description": "Netflix conductor utilities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsc -p ./tsconfig.json -w",
"dist": "tsc -p ./tsconfig.json -outDir ./dist",
"deploy": "npm run dist & npm publish",
"test": "mocha --require ts-node/register tests/*.ts",
"prettier": "prettier --write src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eugenechen0514/netflix-conductor-utilities.git"
},
"author": {
"name": "EugeneChen",
"email": "[email protected]"
},
"license": "GPL",
"bugs": {
"url": "https://github.com/eugenechen0514/netflix-conductor-utilities/issues"
},
"homepage": "https://github.com/eugenechen0514/netflix-conductor-utilities",
"dependencies": {
"axios": "^1.2.1",
"debug": "^4.3.4",
"delay": "^5.0.0",
"is-promise": "^4.0.0",
"run-forever": "^0.2.0",
"superchain": "^2.3.5"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/debug": "^4.1.7",
"@types/mocha": "^10.0.1",
"@types/node": "^14.18.34",
"chai": "^4.3.7",
"mocha": "^10.1.0",
"prettier": "^2.8.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"keywords": [
"netflix",
"conductor",
"worker"
]
}