-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "kanColleWikiSpider",
"version": "0.2.1",
"author": "selear <[email protected]> (https://github.com/selear)",
"description": "extract data from kanColle Wiki, data source is in HTML",
"keywords": [
"node.js",
"javascript"
],
"repository": {
"type": "git",
"url": "https://github.com/selear/kanColleWikiSpider"
},
"homepage": "https://github.com/selear/kanColleWikiSpider",
"bugs": {
"url": "https://github.com/selear/kanColleWikiSpider/issues",
"email": "[email protected]"
},
"license": "GPL-1.0",
"main": "main.js",
"dependencies": {
"@babel/polyfill": "^7.4.4",
"chalk": "^2.4.2",
"cheerio": "^1.0.0-rc.3",
"core-js": "^3.1.4",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"scripts": {
"test": "mocha",
"build": "babel src --out-dir dist"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.4.5",
"should": "^13.2.3"
}
}