-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
64 lines (64 loc) · 1.58 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
{
"name": "ember-cli-deploy-revision-data",
"version": "3.0.0",
"description": "An ember-cli-deploy plugin to generate data about this deploy revision including a unique revision key based on the current build",
"keywords": [
"ember-addon",
"ember-cli-deploy-plugin"
],
"repository": "https://github.com/ember-cli-deploy/ember-cli-deploy-revision-data",
"license": "MIT",
"author": "Aaron Chambers and the ember-cli-deploy team",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"test": "eslint index.js lib/**/*.js tests/**/*.js && node ./tests/runner.js"
},
"dependencies": {
"chalk": "^4.1.1",
"core-object": "^3.1.5",
"ember-cli-deploy-plugin": "^0.2.9",
"git-repo-info": "^2.1.1",
"minimatch": "^3.1.2",
"rsvp": "^4.8.5",
"simple-git": "^3.19.0"
},
"devDependencies": {
"@octokit/rest": "^18.12.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"ember-cli": "^3.28.6",
"eslint": "^8.42.0",
"glob": "^10.2.6",
"mocha": "^8.3.2",
"release-it": "^14.6.1",
"release-it-lerna-changelog": "^3.1.0"
},
"engines": {
"node": "14.x || 16.x || 18.x || >= 20"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": false
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
},
"volta": {
"node": "14.21.3",
"yarn": "1.22.18"
}
}