-
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) · 889 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 889 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": "devchat",
"main": "./index.js",
"author": "abouthiroppy <git@about-hiroppy.com http://about-hiroppy.com",
"version": "0.0.1",
"license": "MIT",
"description": "A devchat.tv's client.",
"keywords": [
"devchat"
],
"scripts": {
"lint": "eslint .",
"test": "nyc ava",
"debug": "packer --debug",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"postcover": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"ava": {
"files": [
"test/**/*.js"
],
"tap": true,
"failFast": true,
"concurrency": 5
},
"devDependencies": {
"ava": "^0.19.1",
"conventional-changelog-cli": "^1.3.1",
"eslint": "^4.0.0",
"eslint-config-sky": "^1.6.2",
"nyc": "^11.0.2"
},
"dependencies": {
"cheerio": "^1.0.0-rc.1",
"node-fetch": "^1.7.1"
}
}