-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
42 lines (42 loc) · 1.41 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
{
"name": "github-label-sync",
"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": "^7.0.3",
"ajv": "^8.6.3",
"chalk": "^4.1.2",
"commander": "^6.2.1",
"got": "^12.5.3",
"js-yaml": "^3.14.1",
"node.extend": "^2.0.2",
"octonode": "^0.10.2"
},
"devDependencies": {
"eslint": "^7.25.0",
"istanbul": "~0.4",
"mocha": "^10.1.0",
"mockery": "^2",
"proclaim": "^3",
"sinon": "^1",
"sinon-as-promised": "^4"
},
"engines": {
"node": ">=20"
},
"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 ."
}
}