-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
{
"name": "pixiv-illust",
"version": "0.2.0",
"description": "A third-party Node.js library for Pixiv.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/ && eslint test/ -c .eslintrc.test.js",
"compile": "babel src -d dist",
"prepublish": "npm run compile && npm run lint && node chmod.js",
"test": "npm run compile && mocha --compilers js:babel-register",
"precommit": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HakurouKen/pixiv-illust.git"
},
"keywords": [
"pixiv",
"api",
"download",
"illust"
],
"bin": {
"pixiv-download": "bin/download"
},
"author": "HakurouKen",
"license": "MIT",
"bugs": {
"url": "https://github.com/HakurouKen/pixiv-illust/issues"
},
"homepage": "https://github.com/HakurouKen/pixiv-illust#readme",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.14.0",
"babel-preset-es2016": "^6.11.3",
"babel-preset-es2017": "^6.14.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"eslint": "^3.7.0",
"husky": "^0.11.9",
"mocha": "^3.0.2"
},
"dependencies": {
"babel-polyfill": "^6.16.0",
"bluebird": "^3.4.6",
"cheerio": "^0.22.0",
"commander": "^2.9.0",
"extend": "^3.0.0",
"lodash": "^4.16.4",
"request": "^2.75.0"
}
}