forked from aaa4xu/bookworm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.69 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
{
"name": "project-bookworm",
"version": "1.2.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"commit": "git cz",
"start": "node -r ts-node/register src/index.ts",
"test": "mocha",
"watch": "nodemon --exec npm start",
"release": "standard-version --no-verify",
"watch:test": "mocha --watch",
"prebuild": "npm run clean",
"build": "tsc",
"clean": "rimraf dist",
"lint:prettier": "prettylint \"src/**/*.ts\"",
"lint:tslint": "tslint -c tslint.json \"src/**/*.ts\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"canvas": "^2.6.0",
"cheerio": "^1.0.0-rc.6",
"prompts": "^2.4.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^4.2.5",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.14",
"@types/prettier": "^1.19.0",
"@types/prompts": "^2.0.10",
"@types/request-promise-native": "^1.0.17",
"chai": "^4.2.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^3.1.0",
"mocha": "^6.2.2",
"nodemon": "^2.0.1",
"prettier": "^1.19.1",
"prettylint": "^1.0.0",
"rimraf": "^3.0.0",
"standard-version": "^9.2.0",
"ts-node": "^8.5.2",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.7.2"
},
"engines": {
"node": ">=10"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:tslint"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard-version": {
"scripts": {
"prebump": "echo 1.2.0"
}
}
}