forked from emberjs/ember-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.82 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.82 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "ember-inspector",
"version": "2.0.0",
"description": "Extends developer tools to allow you to better inspect your Ember.js apps.",
"directories": {
"test": "tests"
},
"scripts": {
"start": "ember server",
"build": "ember build",
"test": "ember test",
"watch": "ember build --watch",
"serve:bookmarklet": "ember serve --port 9191",
"build:production": "EMBER_ENV=production node scripts/download-panes.js && ember build --environment production && grunt compress:main clean-tmp build-xpi",
"upload": "npm run build:production && grunt s3:bookmarklet",
"run-xpi": "npm run build && grunt run-xpi",
"build:xpi": "npm run build && grunt build-xpi",
"build:xpi:production": "npm run build:production && grunt clean-tmp build-xpi",
"compress:panes": "grunt compress:chrome-pane && grunt compress:firefox-pane && grunt compress:bookmarklet-pane",
"upload:panes": "npm run build && npm run compress:panes && node scripts/upload-panes.js",
"lock-version": "npm run build:production && npm run compress:panes && EMBER_ENV=production node scripts/upload-panes.js"
},
"repository": "https://github.com/emberjs/ember-inspector",
"engines": {
"node": ">= 0.10.0",
"npm": ">= 2.0.0"
},
"emberVersionsSupported": [
"2.7.0",
""
],
"previousEmberVersionsSupported": [
"0.0.0"
],
"author": "Tilde, Inc.",
"license": "MIT",
"devDependencies": {
"aws-sdk": "^2.3.3",
"babel-eslint": "4.1.7",
"broccoli-asset-rev": "^2.0.0",
"broccoli-babel-transpiler": "5.1.0",
"broccoli-concat": "0.0.12",
"broccoli-es6modules": "^0.5.1",
"broccoli-file-creator": "^0.1.0",
"broccoli-file-remover": "^0.3.1",
"broccoli-lint-eslint": "1.1.1",
"broccoli-merge-trees": "^0.2.1",
"broccoli-replace": "^0.3.1",
"broccoli-sass": "^0.6.1",
"broccoli-static-compiler": "^0.2.1",
"broccoli-stew": "^0.3.1",
"broccoli-wrap": "0.0.2",
"ember-cli": "0.2.0",
"ember-cli-app-version": "0.3.2",
"ember-cli-babel": "^5.0.0",
"ember-cli-content-security-policy": "0.3.0",
"ember-cli-dependency-checker": "0.0.8",
"ember-cli-eslint": "https://github.com/teddyzeenny/ember-cli-eslint#1.1.0",
"ember-cli-htmlbars": "0.7.4",
"ember-cli-ic-ajax": "0.1.1",
"ember-cli-inject-live-reload": "^1.3.0",
"ember-cli-qunit": "0.3.9",
"ember-cli-uglify": "1.0.1",
"ember-export-application-global": "^1.0.2",
"ember-pikaday": "^0.2.1",
"eslint-config-ember": "0.2.0",
"fstream": "^1.0.8",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-compress": "^0.12.0",
"grunt-jpm": "~0.1.3",
"grunt-s3": "^0.2.0-alpha.3",
"js-string-escape": "^1.0.0",
"mkdirp": "^0.5.1",
"rimraf": "^2.5.2",
"yauzl": "^2.4.1"
},
"dependencies": {
"ember-new-computed": "^1.0.0"
}
}