-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"name": "@smartcharging/scn-tools",
"version": "0.1.0",
"description": "Common tools for aiding development of applications built on top of the SCN",
"main": "index.js",
"scripts": {
"build": "tsc",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"start": "ts-node src/index.ts",
"start-cpo": "ts-node src/index.ts mock --cpo",
"start-msp": "ts-node src/index.ts mock --msp",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/smartcharging/scn-tools.git"
},
"author": "eMobilify GmbH",
"license": "Apache-2.0",
"homepage": "https://bitbucket.org/smartcharging/scn-tools#readme",
"dependencies": {
"@smartcharging/scn-bridge": "git+https://bitbucket.org/smartcharging/scn-bridge.git",
"better-sqlite3": "^5.4.3",
"uuid": "^3.3.3",
"yargs": "^14.2.0"
},
"devDependencies": {
"@types/better-sqlite3": "^5.4.0",
"@types/uuid": "^3.4.5",
"@types/yargs": "^13.0.3",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
}
}