-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
{
"name": "livebox-node-remote",
"version": "0.0.1",
"description": "Control your livebox with node over the LAN",
"main": "app.js",
"dependencies": {
"@types/es6-promise": "^3.3.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/request": "^2.48.1",
"@types/request-promise": "^4.1.42",
"@types/request-promise-native": "^1.0.15",
"chai": "^4.2.0",
"mocha": "^6.0.2",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"typescript": "^3.3.4000"
},
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts && npm run tslint",
"serve": "node dist/app.js",
"watch-node": "nodemon dist/app.js",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"test": "mocha -r ts-node/register src/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngombert/livebox-Node-Remote.git"
},
"author": "Nicolas GOMBERT <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ngombert/livebox-Node-Remote/issues"
},
"homepage": "https://github.com/ngombert/livebox-Node-Remote#readme"
}