forked from ember-cli-deploy/ember-cli-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.63 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.63 KB
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
{
"name": "ember-cli-deploy",
"description": "An Ember-CLI Addon for `Lightning Fast Deployments of Ember-CLI Apps`",
"version": "0.4.1",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"start": "ember server",
"build": "ember build",
"test": "node node_modules/mocha/bin/mocha node-tests/**/*-test.js",
"autotest": "node node_modules/mocha/bin/mocha --watch --reporter spec node-tests/**/*-test.js"
},
"repository": "https://github.com/ember-cli/ember-cli-deploy",
"engines": {
"node": ">= 0.10.0"
},
"author": "",
"license": "MIT",
"devDependencies": {
"broccoli-asset-rev": "^2.0.0",
"broccoli-ember-hbs-template-compiler": "^1.6.1",
"chai": "^1.9.2",
"chai-as-promised": "^4.1.1",
"ember-cli": "^0.1.5",
"ember-cli-content-security-policy": "0.3.0",
"ember-cli-dependency-checker": "0.0.7",
"ember-cli-esnext": "0.1.1",
"ember-cli-ic-ajax": "0.1.1",
"ember-cli-inject-live-reload": "^1.3.0",
"ember-cli-qunit": "0.1.2",
"ember-data": "1.0.0-beta.12",
"ember-export-application-global": "^1.0.0",
"express": "^4.8.5",
"github": "0.2.3",
"mocha": "^2.0.1",
"sinon": "^1.12.1"
},
"keywords": [
"ember-addon",
"ember-cli-deploy"
],
"ember-addon": {
"configPath": "tests/dummy/config",
"defaultBlueprint": "deploy-config"
},
"dependencies": {
"broccoli": "^0.13.2",
"broccoli-gzip": "^0.2.0",
"chalk": "^0.5.1",
"core-object": "0.0.2",
"glob": "^4.0.5",
"lodash-node": "^2.4.1",
"mkdirp": "^0.5.0",
"ncp": "^1.0.1",
"rimraf": "^2.2.8",
"sync-exec": "^0.5.0"
}
}