-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
39 lines (39 loc) · 887 Bytes
/
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
{
"bin": "app.js",
"name": "IPSViewer",
"version": "0.0.1",
"description": "IPS Viewer",
"main": "app.js",
"author": {
"name": "More Informatics, Inc.",
"email": "[email protected]"
},
"scripts": {
"lint": "./node_modules/.bin/eslint . -c .eslintrc.js --ext .js",
"debug": "nodemon app -e html,js",
"test": "mocha test/test.js"
},
"engines": {
"node": "^12.0.0"
},
"dependencies": {
"express": "^4.17.1",
"request": "^2.88.2"
},
"devDependencies": {
"chai": "^4.3.7",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^5.1.0",
"karma-mocha": "^2.0.1",
"karma-requirejs": "^1.1.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.12"
},
"repository": {
"type": "git",
"url": "https://github.com/jddamore/IPSviewer"
},
"snyk": true
}