-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.66 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
{
"name": "snowtify",
"version": "0.3.1",
"description": "A `drone.io` plugin to connect the ServiceNow API to a CD pipeline.",
"main": "src/index.js",
"bin": "./snowtify.js",
"scripts": {
"start": "node .",
"test": "npm-run-all -s lint cover check-coverage",
"lint": "eslint .",
"cover": "nyc mocha ./test/unit",
"check-coverage": "nyc check-coverage",
"watch:unit": "nodemon -w src -w test -x 'npm test'",
"start:mock-api": "dyson test/snow-api-mock",
"stop:mock-api": "killall ServiceNow-mock-api",
"version": "./.version.js && git add .drone.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UKHomeOffice/snowtify.git"
},
"keywords": [
"drone",
"plugin",
"ServiceNow",
"CD"
],
"author": "Robin Knipe",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/UKHomeOffice/snowtify/issues"
},
"homepage": "https://github.com/UKHomeOffice/snowtify#readme",
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-json": "github:RobinKnipe/chai-json",
"dyson": "^3.0.3",
"eslint": "^4.17.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-one-variable-per-var": "0.0.3",
"mocha": "^8.1.1",
"mock-fs": "^4.4.2",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.2",
"nyc": "^15.1.0",
"proxyquire": "^1.8.0",
"rewire": "^3.0.2",
"shelljs": "^0.8.1",
"sinon": "^4.3.0",
"sinon-chai": "^2.14.0"
},
"dependencies": {
"moment": "^2.20.1",
"superagent": "^3.8.3",
"superagent-proxy": "^1.0.3",
"winston": "^3.0.0",
"yargs": "^12.0.2"
}
}