-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1020 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
42
43
44
45
{
"name": "@my-dish/packer",
"main": "index.js",
"author": "abouthiroppy <[email protected]> (http://about-hiroppy.com)",
"version": "0.2.4",
"license": "MIT",
"description": "",
"keywords": [
"dish",
"package"
],
"repository": {
"url": "git+https://github.com/my-dish/packer.git",
"type": "git"
},
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"lint": "eslint .",
"test": "nyc ava",
"postcover": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"bin": {
"packer": "./bin/packer.js"
},
"ava": {
"files": [
"test/**/*.js"
],
"tap": true,
"failFast": true,
"concurrency": 5
},
"devDependencies": {
"ava": "^0.19.1",
"conventional-changelog-cli": "^1.3.1",
"eslint": "^3.19.0",
"eslint-config-sky": "^1.5.0",
"nyc": "^10.3.2"
},
"dependencies": {
"cross-spawn": "^5.1.0",
"fs-extra": "^3.0.1",
"rc": "^1.2.1"
}
}