-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1008 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1008 Bytes
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
{
"name": "comics-dm5",
"version": "0.0.11",
"description": "dm5.com api client",
"main": "dist/index.js",
"config": {
"prepublish": {
"purity": true
}
},
"scripts": {
"watch": "babel src --watch --presets babel-preset-es2015 --out-dir dist",
"build": "babel src --presets babel-preset-es2015 --out-dir dist",
"prepublish": "npm run build",
"test": "mocha test/dm5-test.js"
},
"author": "Yukai Huang",
"license": "MIT",
"dependencies": {
"cheerio": "^0.22.0",
"fetch-everywhere": "^1.0.5",
"query-string": "^4.2.2"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"mocha": "^3.0.2",
"npm": "^3.10.6"
}
}