-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.24 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
{
"name": "leetcode-problems-crawler",
"bin": "./build/main/index.js",
"version": "0.10.0",
"description": "crawling leetcode problems, written by TypeScript",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": "https://github.com/vv13/leetcode-problems-crawler",
"license": "MIT",
"keywords": [],
"scripts": {
"start": "ts-node src/index",
"build": "run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:tslint": "tslint --fix --project .",
"watch": "run-s clean build:main && run-p \"build:main -- -w\""
},
"engines": {
"node": ">=8.9"
},
"dependencies": {
"commander": "^9.4.1",
"superagent": "^8.0.6"
},
"devDependencies": {
"@types/superagent": "^4.1.16",
"cz-conventional-changelog": "^3.3.0",
"npm-run-all": "^4.1.5",
"open-cli": "^7.1.0",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}