-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.24 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "deployment-helpers",
"version": "3.0.1",
"description": "A collection of scripts that can be used as part of a deployment process.",
"platform": "custom",
"owner": "tech-foundation",
"ci": "dockyard",
"main": "dist/module/utils",
"bin": {
"check-built-asset-size": "./nodeApps/checkBuiltAssetSize.js",
"create-private-release": "./nodeApps/createPrivateRelease.sh",
"release": "./nodeApps/release.js",
"prerelease": "./nodeApps/preRelease.js",
"generate-signed-file": "./nodeApps/generateSignedFile.js"
},
"scripts": {
"build": "babel src --out-dir dist/module",
"coverage": "nyc mocha && nyc check-coverage",
"checksize": "BUILT_ASSET=dist/module/utils.js ./nodeApps/checkBuiltAssetSize.js",
"test": "npm run lint && npm run coverage",
"prerelease": "nodeApps/preRelease.js",
"release": "nodeApps/release.js",
"lint": "standard",
"ci": "npm run build # required???",
"deploy": "scripts/deploy.sh"
},
"babel": {
"presets": [
"env"
]
},
"nyc": {
"all": true,
"reporter": [
"html",
"text"
],
"statements": 100,
"lines": 100,
"branches": 100,
"functions": 100,
"exclude": [
"src/labelPullRequestWithMetricMovement.js",
"dist",
"coverage",
"nodeApps"
]
},
"standard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"context",
"describe",
"expect",
"it",
"sandbox"
],
"ignore": [
"/dist"
]
},
"license": "UNLICENSED",
"dependencies": {
"@octokit/rest": "14.0.9",
"async": "2.6.4"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-preset-env": "1.7.0",
"chai": "3.5.0",
"dirty-chai": "1.2.2",
"mocha": "4.1.0",
"nyc": "13.3.0",
"sinon": "4.5.0",
"sinon-chai": "2.14.0",
"standard": "9.0.2"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holidayextras/deployment-helpers.git"
},
"author": "",
"bugs": {
"url": "https://github.com/holidayextras/deployment-helpers/issues"
},
"homepage": "https://github.com/holidayextras/deployment-helpers#readme"
}