-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.96 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "manga-parser",
"version": "1.4.0",
"description": "A parser for manga online sources",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"babel-prepublish": "babel src/ -d lib",
"flow": "flow",
"flow-prepublish": "flow-copy-source src lib",
"precommit": "lint-staged",
"prepublish": "npm run babel-prepublish && npm run flow-prepublish",
"test": "jest --coverage"
},
"keywords": [
"manga",
"parser",
"mangafox",
"mangahere",
"readmanga.today"
],
"homepage": "https://github.com/na-ji/node-manga-parser",
"repository": {
"type": "git",
"url": "git+https://github.com/na-ji/node-manga-parser.git"
},
"author": {
"name": "Naji Astier",
"email": "[email protected]",
"url": "https://www.naji-astier.com/"
},
"license": "WTFPL",
"bugs": {
"url": "https://github.com/na-ji/node-manga-parser/issues"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote",
"git add"
]
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
},
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/**/abstract-*.{js,jsx}",
"!src/**/index.{js,jsx}",
"!**/node_modules/**",
"!**/internals/**",
"!**/lib/**"
]
},
"dependencies": {
"axios": "0.19.0-beta.1",
"bluebird": "^3.5.1",
"cheerio": "^1.0.0-rc.2",
"lodash": "^4.17.5",
"moment": "^2.21.0",
"request": "^2.83.0"
},
"devDependencies": {
"axios-mock-adapter": "^1.15.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.25.0",
"babel-jest": "^22.4.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"flow-bin": "^0.67.1",
"flow-copy-source": "^1.3.0",
"husky": "^0.14.3",
"jest": "^23.6.0",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1"
}
}