-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 933 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
{
"name": "nico-api",
"main": "lib/index.js",
"author": "(http://about-hiroppy.com) abouthiroppy <[email protected]>",
"version": "0.14.0",
"license": "MIT",
"description": "",
"keywords": [],
"homepage": "",
"engines": {
"node": ">=4"
},
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"lint": "eslint .",
"test": "nyc ava",
"test:watch": "nyc ava -w",
"postcover": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"ava": {
"files": [
"test/**/*.js"
],
"concurrency": 5,
"failFast": true,
"tap": true
},
"devDependencies": {
"ava": "^0.19.1",
"conventional-changelog-cli": "^1.3.1",
"dotenv": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-sky": "^1.4.4",
"nyc": "^10.2.0"
},
"dependencies": {
"cheerio": "^0.22.0",
"request": "^2.81.0"
}
}