forked from ember-cli/ember-cli-inject-live-reload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.38 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
54
55
56
57
{
"name": "ember-cli-inject-live-reload",
"version": "2.0.1",
"description": "Plugin for ember-cli that injects live-reload script into HTML content.",
"keywords": [
"ember-addon"
],
"homepage": "https://github.com/rwjblue/ember-cli-inject-live-reload",
"bugs": {
"url": "https://github.com/rwjblue/ember-cli-inject-live-reload/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/rwjblue/ember-cli-inject-live-reload.git"
},
"license": "MIT",
"author": "Robert Jackson",
"files": [
"index.js"
],
"main": "index.js",
"scripts": {
"changelog": "lerna-changelog",
"lint:js": "eslint .",
"test": "qunit tests"
},
"dependencies": {
"clean-base-url": "^1.0.0",
"ember-cli-version-checker": "^3.1.3"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-plugin-node": "^8",
"express": "^4.17.1",
"lerna-changelog": "^0.8.2",
"qunit": "~2.9.2"
},
"engines": {
"node": "6.* || 8.* || >= 10.*"
},
"changelog": {
"repo": "ember-cli/ember-cli-inject-live-reload",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal"
}
},
"ember-addon": {
"before": [
"serve-files-middleware",
"broccoli-watcher"
]
}
}