-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.82 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
{
"name": "ember-cli-deploy-smart-compress",
"version": "2.0.0",
"description": "Ember CLI Deploy plugin to compress files in gzip or brotli automatically depending on supported browsers (forked from Dockyard)",
"keywords": [
"ember-addon",
"ember-cli-deploy-plugin"
],
"repository": "https://github.com/ember-cli-deploy/ember-cli-deploy-smart-compress",
"license": "MIT",
"author": "Miguel Camba",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"release": "release-it",
"test": "mocha tests && eslint index.js tests/**/*.js"
},
"dependencies": {
"caniuse-api": "^2.0.0",
"chalk": "^1.1.3",
"core-object": "^2.1.1",
"ember-cli-deploy-plugin": "^0.2.9",
"minimatch": "^3.1.2",
"rsvp": "^3.6.2"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"ember-cli": "^3.28.6",
"ember-cli-release": "^1.0.0-beta.2",
"eslint": "^8.40.0",
"github": "^9.3.1",
"glob": "^7.2.3",
"mocha": "^5.2.0",
"multiline": "^1.0.2",
"node-zopfli-es": "^2.0.2",
"npm": "^9.7.1",
"release-it": "14.11.8",
"release-it-lerna-changelog": "~3.1.0",
"rimraf": "^2.3.4"
},
"engines": {
"node": "16.* || 18.* || >= 20.*"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"ember-addon": {
"configPath": "tests/dummy/config"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": false
}
},
"git": {
"tagName": "v${version}",
"requireCleanWorkingDir": false
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
},
"volta": {
"node": "16.20.1",
"yarn": "3.6.0-git.20230603.hash-3c8237cb",
"npm": "9.7.1"
}
}