-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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-addon-tests",
"version": "0.11.1",
"description": "A set of integration test helpers for Ember CLI addons",
"keywords": [
"ember-cli"
],
"homepage": "https://github.com/tomdale/ember-cli-addon-tests#readme",
"bugs": {
"url": "https://github.com/tomdale/ember-cli-addon-tests/issues"
},
"license": "MIT",
"author": "Tom Dale <tom@tomdale.net>",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tomdale/ember-cli-addon-tests.git"
},
"scripts": {
"test": "cross-env DEBUG=ember-cli-addon-tests npm run test:mocha",
"test:mocha": "mocha test test/acceptance"
},
"dependencies": {
"chalk": "^2.0.1",
"debug": "^3.0.0",
"denodeify": "^1.2.1",
"findup-sync": "^2.0.0",
"fs-extra": "^5.0.0",
"lodash": "^4.0.0",
"semver": "^5.3.0",
"symlink-or-copy": "^1.1.3",
"temp": "^0.8.3"
},
"devDependencies": {
"chai": "^4.0.2",
"cross-env": "^5.0.0",
"ember-cli": "~3.8.0",
"ember-cli-fastboot": "^1.0.0",
"eslint-config-sane": "^0.6.0",
"eslint-plugin-prefer-let": "^1.0.1",
"mocha": "^5.0.0",
"mocha-eslint": "^4.0.0",
"request": "^2.75.0"
},
"engines": {
"node": ">= 6"
}
}