forked from Financial-Times/github-label-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.36 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
{
"name": "github-label-sync",
"version": "1.3.0",
"description": "Synchronise your GitHub labels with as few destructive operations as possible",
"repository": {
"type": "git",
"url": "https://github.com/Financial-Times/github-label-sync.git"
},
"homepage": "https://github.com/Financial-Times/github-label-sync",
"bugs": "https://github.com/Financial-Times/github-label-sync/issues",
"license": "MIT",
"main": "lib/github-label-sync.js",
"bin": "bin/github-label-sync.js",
"dependencies": {
"@financial-times/origami-service-makefile": "^6.0.1",
"chalk": "^1",
"commander": "^2",
"got": "^7.1.0",
"node.extend": "^1",
"octonode": "~0.7"
},
"devDependencies": {
"eslint": "^2",
"istanbul": "~0.4",
"mocha": "^2",
"mockery": "^1",
"proclaim": "^3",
"sinon": "^1",
"sinon-as-promised": "^4"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "npm run lint && npm run test-coverage",
"test-unit": "NODE_ENV=test ./node_modules/.bin/mocha ./test/unit --recursive",
"test-instrument": "NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- ./test/unit --recursive",
"test-coverage": "npm run test-instrument && ./node_modules/.bin/istanbul check-coverage --statement 90 --branch 90 --function 90",
"lint": "./node_modules/.bin/eslint ."
}
}