This repository has been archived by the owner on Jul 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.74 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
{
"author": {
"name": "Hutson Betts",
"email": "[email protected]",
"url": "https://github.com/hbetts"
},
"bin": "./src/cli.js",
"bugs": "https://github.com/factset/deprecator/issues",
"description": "Deprecate npm package versions based on rule matching.",
"engines": {
"node": ">=6.9.0"
},
"files": [
"src/"
],
"homepage": "https://github.com/factset/deprecator#readme",
"keywords": [
"automation",
"deprecate",
"npm"
],
"license": "Apache-2.0",
"main": "src/index.js",
"name": "deprecator",
"repository": {
"type": "git",
"url": "https://github.com/factset/deprecator.git"
},
"scripts": {
"dev": "docker run --rm --user node -v \"$(pwd)\":/app -w /app -it node:4 sh -c \"yarn install; yarn test; bash\"",
"start": "node src/server.js",
"schedule": "node src/scheduler.js",
"test": "eslint src/ && nyc mocha --opts mocha.opts src/**/*.spec.js",
"worker": "node src/worker.js"
},
"version": "1.0.0",
"dependencies": {
"bluebird": "^3.5.1",
"commander": "^2.12.2",
"debug": "^4.0.0",
"express": "^4.16.3",
"glob": "^7.1.2",
"got": "^8.0.0",
"jsonwebtoken": "^8.2.0",
"lodash": "^4.17.5",
"minimatch": "^3.0.4",
"moment": "^2.22.1",
"redis": "^2.8.0",
"registry-url": "^4.0.0",
"rsmq-worker": "^0.5.2",
"semver": "^5.5.0",
"shelljs": "^0.8.1",
"throng": "^4.0.0",
"tmp": "^0.0.33"
},
"devDependencies": {
"@hbetts/eslint-config": "^2.0.0",
"@hbetts/nyc-config": "^1.0.13",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^3.0.0",
"eslint": "^5.3.0",
"mocha": "^5.0.0",
"nock": "^10.0.0",
"nyc": "^13.0.0",
"sinon": "^7.0.0",
"sinon-chai": "^3.0.0"
}
}