-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.34 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
{
"name": "@blued-core/qconf",
"version": "1.0.4",
"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",
"start": "NODE_ENV=test node dist",
"start-pro": "NODE_ENV=local node dist",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git@github.com:bluedapp/node-util-qconf.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"node-qconf": "^0.4.2"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.2",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"chai": "^4.2.0",
"commitizen": "^3.0.7",
"eslint": "^5.16.0",
"eslint-config-blued-typescript": "^0.2.4",
"eslint-plugin-import": "^2.16.0",
"husky": "^1.3.1",
"mocha": "^6.1.4",
"ts-node": "^8.0.3",
"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"
}
}
}