-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 922 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
{
"name": "jmonitor-interface",
"version": "0.0.2",
"private": true,
"description": "Jmonitor routine and shared classes",
"main": "index.js",
"scripts": {
"start": "npm run build:live",
"build:live": "nodemon --exec ./node_modules/.bin/ts-node -- ./index.ts",
"pretest": "tsc test/*test.ts --module commonjs",
"test": "mocha"
},
"keywords": [],
"author": "[email protected]",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/donateoa/jmonitor-interface.git"
},
"bugs": {
"url": "https://github.com/donateoa/jmonitor-interface/issues"
},
"homepage": "https://github.com/donateoa/jmonitor-interface",
"dependencies": {
"node-rest-client": "^2.0.1",
"typescript": "^2.1.5"
},
"devDependencies": {
"@types/node": "^7.0.1",
"nodemon": "^1.11.0",
"ts-node": "^2.0.0",
"typescript": "^2.1.5"
}
}