-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.22 KB
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
{
"name": "node-ns-api",
"version": "0.0.3",
"description": "NodeJS NS API Module",
"main": "dist/index.js",
"types": "dist/node-ns-api.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && dts-bundle --name node-ns-api --main dist/index.d.ts",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"version" : "npm run format && git add -A src",
"postversion" : "git push && git push --tags"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MichielMag/node-ns-api.git"
},
"keywords": [
"NS",
"API",
"Dutch",
"Railways",
"node-red"
],
"author": "Michiel Klaassen",
"license": "MIT",
"bugs": {
"url": "https://github.com/MichielMag/node-ns-api/issues"
},
"homepage": "https://github.com/MichielMag/node-ns-api#readme",
"devDependencies": {
"prettier": "^1.16.4",
"tsc": "^1.20150623.0",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.1",
"@types/request": "^2.48.1",
"dts-bundle": "^0.7.3"
},
"dependencies": {
"request": "^2.88.0",
"rxjs": "^6.4.0"
}
}