-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.51 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.51 KB
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
{
"name": "@blued-core/http-server",
"version": "0.7.6",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"build": "rm -rf dist && tsc",
"watch": "tsc -w",
"lint": "bash ./scripts/lint-staged-files.sh",
"prepare": "npm run build",
"watch-node": "NODE_ENV=test nodemon dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@blued-core/cache": "^1.0.6",
"@blued-core/exception-report-client": "^0.1.1",
"@blued-core/http-server-base": "^0.6.5",
"@blued-core/normal-conf": "^0.1.1",
"@blued-core/performance-client": "0.0.5",
"@blued-core/winston-logger": "^0.1.3"
},
"peerDependencies": {
"typescript": "^3.5.2"
},
"devDependencies": {
"@commitlint/cli": "^8.3.3",
"@commitlint/config-conventional": "^8.0.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.10",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"chai": "^4.2.0",
"commitizen": "^4.0.3",
"eslint": "^6.0.1",
"eslint-config-blued-typescript": "^1.0.2",
"eslint-plugin-import": "^2.18.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"ts-node": "^8.3.0",
"typescript": "^3.9.6"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint && npm run test"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}