-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 884 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 884 Bytes
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": "aprs-parser",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/tapvolt/aprs-parser.git",
"author": "Gareth Jackson",
"license": "MIT",
"devDependencies": {
"@types/config": "^0.0.32",
"@types/jest": "^19.2.2",
"@types/node": "^7.0.16",
"@types/winston": "^2.3.1",
"jest": "^20.0.4",
"ts-jest": "^20.0.6",
"ts-node": "^3.0.2",
"tslint": "^5.4.3"
},
"scripts": {
"start": "NODE_CONFI_DIR=./config ts-node src/index.ts",
"build": "tsc",
"test": "NODE_CONFIG_DIR=./config NODE_ENV=testing jest",
"lint": "tslint src/**/*.ts -t codeFrame --force",
"lint:list": "tslint src/**/*.ts -t verbose --force"
},
"dependencies": {
"config": "^1.26.1",
"ip": "^1.1.5",
"mysql2": "^1.2.0",
"typescript": "^2.3.2",
"winston": "^2.3.1"
},
"files": [
"bin/*"
]
}