-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "@bsdavidson/oink",
"version": "0.1.1",
"description": "A module for interacting with Onkyo recievers",
"main": "lib/index.js",
"author": "Brian Davidson",
"license": "MIT",
"homepage": "https://github.com/bsdavidson/oink",
"devDependencies": {
"@types/jest": "^23.3.0",
"@types/js-yaml": "^3.11.2",
"@types/node": "^10.5.2",
"@types/prettier": "^1.13.2",
"jest": "^23.4.1",
"js-yaml": "^3.12.0",
"prettier": "1.13.7",
"rimraf": "^2.6.2",
"ts-jest": "^23.0.1",
"ts-node": "^7.0.0",
"ts-node-dev": "^1.0.0-pre.26",
"typescript": "^2.9.2"
},
"scripts": {
"build": "tsc",
"clean": "rimraf ./lib",
"generate": "ts-node ./build/generate-commands.ts",
"prepublish": "yarn clean && yarn test && yarn build",
"test": "jest --coverage",
"watch": "jest --coverage --collectCoverageFrom=src/*.ts --watch"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"verbose": true,
"testRegex": "/__tests__/.*\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}