-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
85 lines (85 loc) · 2.22 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "sn-cicd",
"version": "4.11.4",
"description": "CICD service for Service-Now",
"main": "lib/cicd.js",
"scripts": {
"start": "node server.js",
"worker": "node worker.js",
"server": "node server.js",
"startMonitored": "nodemon --inspect server.js",
"test": "mocha",
"devServer": "nodemon --ignore cert/**/* --ignore db/**/* --verbose --delay 2 server.js",
"devWorker": "nodemon --ignore cert/**/* --ignore db/**/* --verbose --delay 2 worker.js",
"setup": "npm cache clean && rm -rf node_modules && npm install"
},
"author": "Boris Moers",
"license": "LGPL-3.0",
"dependencies": {
"@moers/nedb": "^1.9.1",
"async-mutex": "^0.3.2",
"bluebird": "^3.7.2",
"camelcase": "^6.3.0",
"chalk": "^4.1.1",
"compression": "^1.7.4",
"concat-stream": "^2.0.0",
"console-stamp": "^3.1.0",
"dotenv": "^10.0.0",
"elementtree": "^0.1.7",
"es6-dynamic-template": "^2.0.0",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"extract-zip": "^2.0.1",
"figlet": "^1.5.0",
"fs-extra": "^10.1.0",
"gulp-git": "^2.10.1",
"html-entities": "^2.3.3",
"lightship": "^6.8.0",
"mkdirp": "^1.0.4",
"mongoose": "^5.13.15",
"multer": "^1.4.4",
"nodemailer": "^6.9.0",
"object-assign-deep": "^0.4.0",
"puppeteer": "1.17.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"sn-project": "^3.18.1",
"sn-rest-client": "^2.1.14",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.4",
"split": "^1.0.1",
"split2": "^3.2.2",
"strip-ansi": "^6.0.1",
"uuid": "^8.3.2",
"xml-js": "^1.6.11"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^7.24.0",
"eslint-config-standard": "^16.0.2",
"mocha": "^9.2.2",
"mongo-express": "1.0.0",
"nodemon": "^2.0.20",
"tree-kill": "^1.2.2"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bmoers/sn-cicd.git"
},
"keywords": [
"CICD",
"DevOps",
"Service-Now"
],
"bugs": {
"url": "https://github.com/bmoers/sn-cicd/issues"
},
"homepage": "https://github.com/bmoers/sn-cicd#readme",
"engines": {
"node": ">=12",
"npm": ">=7.0.0"
}
}