-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "ember-cli-deploy-compress",
"version": "0.4.0",
"description": "Ember CLI Deploy plugin to compress files in gzip or brotli automatically depending on supported browsers",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"start": "ember server",
"build": "ember build",
"test": "mocha tests && eslint index.js tests/**/*.js"
},
"repository": "https://github.com/dockyard/ember-cli-deploy-compress",
"engines": {
"node": "14.* || 16.* || 18.* || >= 20.*"
},
"author": "Miguel Camba",
"license": "MIT",
"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",
"rimraf": "^2.3.4"
},
"keywords": [
"ember-addon",
"ember-cli-deploy-plugin"
],
"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"
},
"ember-addon": {
"configPath": "tests/dummy/config"
}
}