-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.3 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
{
"name": "tid-bacnet-logic",
"version": "0.0.0",
"description": "IO logic of the BACnet protocol",
"repository": {
"type": "git",
"url": "https://github.com/AndreyShuleiko/bacnet-logic"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "gulp watch:test:unit",
"start": "npm run build && node ./dist/index.js",
"build": "gulp build:prod",
"postinstall": "npm install --ignore-scripts && gulp build:prod"
},
"author": "Andrey Shuleiko",
"license": "ISC",
"devDependencies": {
"@types/bluebird": "^3.5.20",
"@types/chai": "^4.1.3",
"@types/lodash": "^4.14.108",
"@types/mocha": "^5.2.0",
"@types/node": "^10.5.1",
"@types/sinon": "^4.3.3",
"chai": "^4.1.2",
"gulp": "^4.0.0",
"gulp-clean": "^0.4.0",
"gulp-delete-lines": "0.0.7",
"gulp-mocha": "^5.0.0",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^4.0.2",
"merge2": "^1.2.2",
"mocha": "^5.1.1",
"run-sequence": "^2.2.1",
"sinon": "^5.0.7",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
},
"dependencies": {
"bluebird": "^3.5.1",
"lodash": "^4.17.10",
"moment": "^2.22.1"
}
}