-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
46
47
48
{
"name": "scpi-2.1.1-bridge",
"version": "0.1.0",
"description": "Talk to the SCN with an SCPI 2.1.1 backend",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run lint && tsc",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"start": "ts-node src",
"test": "mocha -r ts-node/register 'test/**/*.spec.ts'"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/emobilify/scpi-2.1.1-bridge.git"
},
"author": "eMobilify GmbH",
"license": "ISC",
"homepage": "https://bitbucket.org/emobilify/scpi-2.1.1-bridge#readme",
"dependencies": {
"@types/better-sqlite3": "^5.4.0",
"@types/express": "^4.17.2",
"@types/morgan": "^1.7.37",
"@types/node": "^12.12.12",
"@types/uuid": "^3.4.6",
"better-sqlite3": "^5.4.3",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"morgan": "^1.9.1",
"node-fetch": "^2.6.0",
"scn-bridge": "git+https://bitbucket.org/smartcharging/scn-bridge.git",
"ts-node": "^8.5.2",
"typescript": "^3.7.2",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^4.2.5",
"@types/mocha": "^5.2.7",
"@types/node-fetch": "^2.5.4",
"@types/supertest": "^2.0.8",
"chai": "^4.2.0",
"mocha": "^6.2.2",
"supertest": "^4.0.2",
"tslint": "^5.20.1"
}
}