-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "ember-cli-deploy-asset-sizes",
"version": "0.2.0",
"description": "Keep track of your Ember apps asset sizes over time.",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"build": "ember build",
"start": "ember server",
"test": "node tests/runner.js",
"publish:patch": "npm whoami && npm version patch && git push origin --tags && npm publish",
"publish:minor": "npm whoami && npm version minor && git push origin --tags && npm publish"
},
"repository": "https://github.com/kiwiupover/ember-cli-deploy-asset-sizes",
"engines": {
"node": ">= 4"
},
"author": "Dave Laird",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"ember-cli": "2.18.2",
"mocha": "^5.0.0"
},
"keywords": [
"ember-addon",
"ember-cli-deploy-plugin",
"asset-sizes"
],
"dependencies": {
"ember-cli-babel": "^6.11.0",
"ember-cli-deploy-plugin": "^0.2.6",
"keen.io": "^0.1.3",
"rsvp": "^4.8.1"
},
"ember-addon": {
"configPath": "tests/dummy/config"
}
}