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
45 lines (45 loc) · 1.14 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.14 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
{
"name": "ember-cli-deploy",
"description": "A deployment pipeline for ember-cli apps",
"version": "1.0.0",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"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-deploy/ember-cli-deploy",
"engines": {
"node": ">= 0.10.0"
},
"author": "The ember-cli-deploy core team and contributors",
"license": "MIT",
"devDependencies": {
"chai": "^1.9.2",
"chai-as-promised": "^4.1.1",
"ember-cli": "^2.10.0",
"ember-cli-release": "0.2.9",
"github": "0.2.3",
"mocha": "^2.0.1",
"mocha-jshint": "^2.2.6"
},
"keywords": [
"ember-addon",
"ember-cli-deploy"
],
"ember-addon": {
"configPath": "tests/dummy/config"
},
"dependencies": {
"chalk": "^1.1.3",
"core-object": "^2.0.0",
"dag-map": "^2.0.1",
"dotenv": "^1.2.0",
"ember-cli-deploy-progress": "^1.3.0",
"lodash": "^4.0.0",
"rsvp": "^3.3.3",
"silent-error": "^1.0.0"
}
}