-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.42 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "runtime",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"dev": "NODE_ENV=development nodemon index.ts",
"build": "npm run lint && npm run test && node_modules/typescript/bin/tsc",
"lint": "node_modules/tslint/bin/tslint -c tslint.json -p tsconfig.json --force",
"lint:fix": "node_modules/tslint/bin/tslint -c tslint.json -p tsconfig.json --fix --force",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^13.5.2",
"@types/sqlite3": "^3.1.6",
"@types/websocket": "^1.0.1",
"@types/signale": "^1.4.1",
"axios": "^0.21.0",
"protobufjs": "^6.10.2",
"signale": "^1.4.0",
"sqlite3": "^5.0.0",
"websocket": "^1.0.33"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/signale": "^1.4.1",
"jest": "^26.6.3",
"nodemon": "2.0.4",
"ts-jest": "^26.4.4",
"ts-node": "9.0.0",
"tslint": "6.1.3",
"typescript": "4.0.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testMatch": [
"**/*.(test|spec).(ts)"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageReporters": [
"json",
"lcov",
"text",
"text-summary"
]
}
}