-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.48 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
{
"name": "blog-hook",
"version": "0.0.1",
"description": "为blog添加一些hook",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:watch": "nodemon",
"start:debug": "nodemon --config nodemon-debug.json",
"build": "tsc -p tsconfig.build.json",
"start:dev": "npm run prestart:prod && NODE_ENV=test node dist/main.js",
"start:prod": "NODE_ENV=production node dist/main.js",
"prestart:prod": "rm -rf ./dist/ && npm run build",
"lint:fix": "tslint --fix ./src/**/*.ts",
"lint": "tslint ./src/**/*.ts",
"test:watch": "jest --watch --config=jest.config.js",
"test:coverage": "jest --coverage --config=jest.config.js",
"test": "jest --config=jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AsJoy/blog-hook.git"
},
"keywords": [],
"author": "niuyuanqiang <1347827212@qq.com> (https://github.com/AsJoy)",
"license": "MIT",
"bugs": {
"url": "https://github.com/AsJoy/blog-hook/issues"
},
"homepage": "https://github.com/AsJoy/blog-hook#readme",
"dependencies": {
"config": "^3.0.1",
"js-yaml": "^3.12.1",
"log4js": "^3.0.6"
},
"devDependencies": {
"@types/config": "0.0.34",
"@types/jest": "^23.3.13",
"@types/js-yaml": "^3.11.4",
"@types/node": "^10.12.18",
"jest": "^23.6.0",
"rimraf": "^2.6.3",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.8.0",
"tslint": "^5.15.0",
"typescript": "^3.2.2"
}
}