-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.47 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
64
65
66
67
68
{
"name": "rc_s380_driver",
"version": "1.1.2",
"description": "PaSoRi RC-S380 Driver for WebUSB",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"directories": {
"test": "test"
},
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"build": "tsc",
"test": "jest --coverage"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverageFrom": [
"src/*.{js,ts}"
]
},
"author": "Aruneko",
"repository": {
"type": "git",
"url": "https://github.com/aruneko/WebUSB-RC-S380.git"
},
"license": "MIT",
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/jest-diff": "^20.0.1",
"@types/prettier": "^1.18.2",
"@types/w3c-web-usb": "^1.0.3",
"jest": "^29.3.1",
"prettier": "^1.18.2",
"ts-jest": "^29.0.3",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.6.2"
}
}