forked from semantic-release/env-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 1.65 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
{
"name": "env-ci",
"description": "Get environment variables exposed by CI services",
"version": "0.0.0-development",
"author": "Pierre Vanduynslager (https://github.com/pvdlg)",
"bugs": {
"url": "https://github.com/pvdlg/github-parser/issues"
},
"dependencies": {
"execa": "^1.0.0",
"java-properties": "^0.2.9"
},
"devDependencies": {
"ava": "^0.25.0",
"codecov": "^3.0.0",
"file-url": "^2.0.2",
"nyc": "^12.0.1",
"proxyquire": "^2.1.0",
"semantic-release": "^15.0.0",
"tempy": "^0.2.1",
"xo": "^0.23.0"
},
"engines": {
"node": ">=6"
},
"files": [
"lib",
"index.js"
],
"homepage": "https://github.com/pvdlg/env-ci#readme",
"keywords": [
"appveyor",
"bamboo",
"bitbucket",
"bitrise",
"buddy",
"buildkite",
"ci",
"circle",
"cirrus",
"codebuild",
"codeship",
"drone",
"environment",
"git",
"gitlab",
"jenkins",
"semaphore",
"shippable",
"teamcity",
"travis",
"variable",
"vsts",
"wercker"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"include": [
"lib/**/*.js",
"index.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
}
}