-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 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
{
"name": "@hipo/hipo-exceptions-js",
"version": "1.0.5",
"description": "JavaScript client for parsing the hipo-drf-exceptions",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"build": "npm run lint:fix && tsc",
"lint": "eslint src/*",
"lint:fix": "prettier 'src/**/*.ts' --write",
"test": "jest",
"test:coverage": "rm -rf coverage/ && jest --coverage",
"type-check": "echo \"type-checking...\" && tsc --noEmit"
},
"keywords": [
"hipo-exceptions-js",
"error",
"exception",
"hipo"
],
"author": "Hipo Web Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/Hipo/hipo-exceptions-js/issues"
},
"homepage": "https://github.com/Hipo/hipo-exceptions-js#readme",
"lint-staged": {
"src/**/*.{ts,tsx}": [
"lint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test && npm run type-check"
}
},
"devDependencies": {
"@types/jest": "25.1.2",
"@typescript-eslint/eslint-plugin": "2.6.1",
"@typescript-eslint/parser": "2.6.1",
"eslint": "6.6.0",
"eslint-config-prettier": "6.5.0",
"eslint-plugin-prettier": "3.1.1",
"husky": "4.2.3",
"jest": "25.1.0",
"lint-staged": "10.0.8",
"prettier": "1.19.1",
"ts-jest": "25.2.0",
"typescript": "3.7.2"
}
}