-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.87 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "updata",
"version": "0.5.5",
"description": "utility for updating hg sub-repositories",
"scripts": {
"lint": "standard",
"prebuild": "rm -rf bin && mkdir bin",
"build": "babel src --out-dir bin --source-maps",
"watch": "babel src --out-dir bin --source-maps --watch",
"start": "node --harmony bin/updata.js",
"prepublish": "npm run coverage:check && npm run build",
"test:once": "npm run lint && ava src/*.spec.js",
"coverage": "nyc npm run test:once",
"coverage:check": "npm run coverage && nyc check-coverage --lines 5 --functions 5 --branches 5",
"coverage:report": "npm run coverage && npm run coverage:coveralls",
"coverage:coveralls": "nyc report --reporter=text-lcov | coveralls",
"precommit": "npm run test:once",
"commit": "git-cz",
"preversion": "npm run test:once",
"postversion": "git push && git push --tags"
},
"bin": {
"updata": "./bin/updata.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sappharx/hg-subrepo-updater.git"
},
"keywords": [
"hg",
"mercurial",
"subrepo"
],
"author": "Vincent Sisk",
"license": "MIT",
"bugs": {
"url": "https://github.com/sappharx/hg-subrepo-updater/issues"
},
"homepage": "https://github.com/sappharx/hg-subrepo-updater#readme",
"dependencies": {
"chalk": "~1.1.3",
"commander": "~2.9.0",
"shelljs": "~0.7.0"
},
"devDependencies": {
"ava": "^0.18.2",
"babel-cli": "^6.10.1",
"babel-preset-es2015-node5": "^1.2.0",
"codecov": "^2.1.0",
"commitizen": "^2.8.2",
"coveralls": "^2.11.9",
"cz-conventional-changelog": "^2.0.0",
"nyc": "^10.0.0",
"standard": "^9.0.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"nyc": {
"exclude": [
"**/*.spec.js",
"bin"
]
},
"ava": {
"babel": "inherit"
}
}