forked from semantic-release/env-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 1.91 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
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "env-ci",
"description": "Get environment variables exposed by CI services",
"version": "0.0.0-development",
"author": "Pierre Vanduynslager (https://github.com/pvdlg)",
"ava": {
"files": [
"test/**/*.test.js"
]
},
"bugs": {
"url": "https://github.com/pvdlg/github-parser/issues"
},
"dependencies": {
"execa": "^4.0.0",
"java-properties": "^1.0.0"
},
"devDependencies": {
"ava": "^3.1.0",
"codecov": "^3.0.0",
"file-url": "^3.0.0",
"nyc": "^15.0.0",
"proxyquire": "^2.1.0",
"semantic-release": "^17.0.0",
"tempy": "^0.5.0",
"xo": "^0.28.0"
},
"engines": {
"node": ">=10.13"
},
"files": [
"index.js",
"lib",
"services"
],
"homepage": "https://github.com/pvdlg/env-ci#readme",
"keywords": [
"appveyor",
"bamboo",
"bitbucket",
"bitrise",
"buddy",
"buildkite",
"ci",
"circle",
"cirrus",
"codebuild",
"codefresh",
"codeship",
"drone",
"environment",
"git",
"github",
"gitlab",
"jenkins",
"puppet",
"sail",
"scrutinizer",
"semaphore",
"shippable",
"teamcity",
"travis",
"variable",
"vsts",
"wercker"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"include": [
"index.js",
"lib/**/*.js",
"services/**/*.js"
],
"reporter": [
"json",
"text",
"html"
],
"all": true
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/pvdlg/env-ci.git"
},
"scripts": {
"codecov": "codecov -f coverage/coverage-final.json",
"lint": "xo",
"semantic-release": "semantic-release",
"test": "xo && nyc ava -v"
},
"xo": {
"prettier": true,
"space": true,
"rules": {
"unicorn/string-content": "off"
}
}
}