-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.17 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "hipthrusts",
"version": "0.10.0",
"repository": {
"type": "git",
"url": "https://github.com/captaincaius/hipthrusts.git"
},
"workspaces": {
"nohoist": [
"@types*",
"@types*/**"
]
},
"description": "Build stronger, leaner backends with HipThrusTS",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"scripts": {
"clean": "rimraf lib .tsbuildinfo .nyc_output coverage doc build",
"test": "npm run buildtests && npm run mocha",
"build": "tsc -p tsconfig.json",
"buildtests": "tsc -p tsconfig.test.json",
"lint": "tslint --project tsconfig.base.json",
"mocha": "nyc mocha \"./test/index.test.ts\" --timeout 15000",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"tsc": "tsc",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"prepare": "npm run clean && npm run build",
"prettier": "if test -z $CI; then prettier --write \"./{src,test}/**/*.{ts,js}\"; fi"
},
"license": "MIT",
"peerDependencies": {
"@hapi/boom": "^8.0.1",
"express": "^4.15.2",
"json-mask": "^0.3.8",
"mongoose": "^5.9.4"
},
"devDependencies": {
"@hapi/boom": "^8.0.1",
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/boom": "^7.3.0",
"@types/chai": "^4.2.3",
"@types/chai-as-promised": "^7.1.2",
"@types/express": "^4.0.36",
"@types/mocha": "^5.2.7",
"@types/mongoose": "^5.5.23",
"@types/node": "^8.10.53",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.6",
"express": "^4.15.2",
"husky": "^1.3.1",
"json-mask": "^0.3.8",
"mocha": "^6.2.1",
"mongoose": "^5.9.4",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.10.0",
"rimraf": "3.0.0",
"ts-node": "^8.4.1",
"tslint": "5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "*5.4.0",
"typescript": "^3.9.2"
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint && npm run test"
}
},
"author": "Captain Caius"
}