-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "url-juicer",
"version": "0.4.0",
"description": "Squeeze some juice from URLs: A URL crawler/extraction library.",
"main": "src/index.js",
"author": "Jacob Bare <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/limit-zero/url-juicer.git"
},
"scripts": {
"test": "yarn run lint && ./node_modules/.bin/mocha --reporter spec",
"lint": "./node_modules/.bin/eslint \"src/**/*.js\"",
"coverage": "./node_modules/.bin/nyc yarn run test"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"validator": "^9.4.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"express": "^4.16.2",
"mocha": "^5.0.1",
"nyc": "^11.4.1",
"sinon": "^4.4.0"
},
"nyc": {
"check-coverage": false,
"per-file": true,
"all": true,
"cache": false,
"include": [
"src/**/*.js"
]
}
}