forked from semantic-release/env-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.64 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
{
"name": "env-ci",
"description": "Get environment variables exposed by CI services",
"version": "0.0.0-development",
"author": "Pierre Vanduynslager (https://github.com/pvdlg)",
"type": "module",
"exports": "./index.js",
"dependencies": {
"execa": "^8.0.0",
"java-properties": "^1.0.2"
},
"devDependencies": {
"ava": "6.0.1",
"c8": "8.0.1",
"file-url": "4.0.0",
"prettier": "3.1.1",
"tempy": "3.1.0"
},
"engines": {
"node": "^18.17 || >=20.6.1"
},
"files": [
"index.js",
"lib",
"services"
],
"keywords": [
"appveyor",
"azure-pipelines",
"bamboo",
"bitbucket",
"bitrise",
"buddy",
"buildkite",
"ci",
"circle",
"cirrus",
"cloudflare",
"codebuild",
"codefresh",
"codeship",
"drone",
"environment",
"git",
"github",
"gitlab",
"jenkins",
"netlify",
"puppet",
"sail",
"screwdriver",
"scrutinizer",
"semaphore",
"shippable",
"teamcity",
"travis",
"variable",
"wercker",
"woodpecker"
],
"license": "MIT",
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": "github:semantic-release/env-ci",
"scripts": {
"lint": "prettier --check \"*.{js,json,md}\" \".github/**/*.{md,yml}\" \"{lib,services,test}/**/*.js\"",
"lint:fix": "prettier --write \"*.{js,json,md}\" \".github/**/*.{md,yml}\" \"{lib,services,test}/**/*.js\"",
"semantic-release": "semantic-release",
"test": "npm run lint && npm run test:ci",
"test:ci": "c8 ava --verbose"
},
"renovate": {
"extends": [
"github>semantic-release/.github"
]
}
}