forked from FlowerEatsFish/books-com-tw-crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.67 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
{
"name": "@flowereatfish/books-com-tw-api",
"version": "1.0.5",
"description": "Unofficial books.com.tw API",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"start": "npm run demo:ts",
"build": "tsc -p ./tsconfig.json",
"build:dev": "cross-env NODE_ENV=development webpack",
"build:prod": "cross-env NODE_ENV=production webpack",
"demo:js": "node ./lib/demo.js",
"demo:ts": "ts-node ./src/demo.ts",
"lint": "eslint . -f stylish --ext .js --ext .ts",
"lint:fix": "eslint . -f stylish --ext .js --ext .ts --fix",
"test": "jest --coverage --silent"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FlowerEatFish/books-com-tw-api.git"
},
"keywords": [
"api",
"web-crawler"
],
"author": "Eating-Fish Flower",
"license": "MIT",
"bugs": {
"url": "https://github.com/FlowerEatFish/books-com-tw-api/issues"
},
"homepage": "https://github.com/FlowerEatFish/books-com-tw-api#readme",
"dependencies": {
"axios": "^0.19.0"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^12.0.8",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.0",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-standard-with-typescript": "^7.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.7.1",
"ts-jest": "^24.0.2",
"ts-loader": "^5.4.5",
"ts-node": "^8.3.0",
"typescript": "^3.5.2",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8"
}
}