-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 961 Bytes
/
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
{
"name": "scele-crawler",
"version": "1.1.2",
"description": "crawler for scele.cs.ui.ac.id",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/scele-crawler/scele-crawler"
},
"scripts": {
"test": "nyc mocha test.js",
"test:lint": "eslint *.js",
"test:report": "nyc report --reporter=text-lcov | coveralls",
"precommit": "yarn test:lint && yarn test"
},
"nyc": {
"include": [
"index.js"
]
},
"dependencies": {
"chalk": "^2.4.2",
"cheerio": "^1.0.0-rc.3",
"minimist": "^1.2.0",
"request": "^2.88.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"husky": "^2.3.0",
"mocha": "^6.1.4",
"nock": "^10.0.6",
"nyc": "^14.1.1",
"sinon": "^7.3.2"
}
}