-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.59 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
{
"name": "hvv",
"version": "0.2.0",
"description": "Node.js wrapper for the HVV API",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm run cleanup && tsc --project .",
"cleanup": "rimraf dist/",
"lint": "tslint -p .",
"precommit": "lint-staged",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"test": "jest"
},
"lint-staged": {
"src/*.ts": [
"tslint -p .",
"prettier --write",
"git add"
]
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/lionralfs/hvv.git"
},
"author": "Lion Ralfs <[email protected]> (https://lionralfs.dev/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lionralfs/hvv/issues"
},
"homepage": "https://github.com/lionralfs/hvv#readme",
"devDependencies": {
"@types/jest": "^22.0.1",
"@types/node": "^9.3.0",
"@types/request-promise": "^4.1.39",
"@types/uuid": "^3.4.3",
"husky": "^0.14.3",
"jest": "^22.0.5",
"lint-staged": "^6.0.0",
"prettier": "^1.10.1",
"rimraf": "^2.6.2",
"ts-jest": "^22.0.1",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.6.0",
"typescript": "^2.7.1"
},
"dependencies": {
"request": "^2.83.0",
"request-promise": "^4.2.2",
"uuid": "^3.1.0"
}
}