This repository has been archived by the owner on Dec 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.47 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
49
50
51
52
53
{
"name": "ember-cli-node-modules-to-vendor",
"version": "0.3.0",
"description": "Easily import packages (non ember addons) from `node_modules`",
"keywords": [
"ember-addon"
],
"license": "MIT",
"author": "Kelly Selden",
"directories": {
"doc": "doc",
"test": "tests"
},
"repository": "https://github.com/kellyselden/ember-cli-node-modules-to-vendor",
"scripts": {
"build": "ember build",
"lint:js": "eslint ./*.js addon addon-test-support app config lib server test-support tests",
"start": "ember serve",
"test": "cross-env DEBUG=ember-cli-addon-tests mocha"
},
"dependencies": {
"broccoli-merge-trees": "^2.0.0",
"broccoli-source": "^1.1.0"
},
"devDependencies": {
"broccoli-funnel": "^2.0.0",
"chai": "^4.0.0",
"cross-env": "^5.0.0",
"denodeify": "^1.2.1",
"ember-cli": "~2.18.2",
"ember-cli-addon-tests": "^0.11.0",
"ember-cli-babel": "^6.3.0",
"ember-cli-dependency-checker": "^2.0.0",
"ember-cli-eslint": "^4.2.1",
"ember-cli-htmlbars": "^2.0.1",
"ember-cli-inject-live-reload": "^1.4.1",
"ember-cli-qunit": "^4.1.1",
"ember-cli-shims": "^1.2.0",
"ember-resolver": "^4.0.0",
"ember-source": "~2.18.0",
"eslint-plugin-ember": "^5.0.0",
"eslint-plugin-node": "^5.2.1",
"loader.js": "^4.2.3",
"mocha": "^5.1.1",
"request": "^2.0.0"
},
"engines": {
"node": "^4.5 || 6.* || >= 7.*"
},
"ember-addon": {
"configPath": "tests/dummy/config"
}
}