forked from alexlafroscia/ember-steps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.42 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "ember-steps",
"version": "2.3.0",
"description": "Super Simple Series of Steps",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"build": "ember build",
"deploy": "ember github-pages:commit --message \"Deploy gh-pages from commit $(git rev-parse HEAD)\" && git push && git checkout -",
"start": "ember server",
"test": "ember try:each",
"lint": "eslint addon app config fastboot-tests lib tests",
"lint:fix": "eslint --fix addon app config fastboot-tests lib tests"
},
"repository": {
"url": "git@github.com:alexlafroscia/ember-steps.git",
"type": "git"
},
"engines": {
"node": "^4.5 || 6.* || >= 7.*"
},
"author": "Alex LaFroscia <alex@lafroscia.com>",
"license": "MIT",
"devDependencies": {
"broccoli-asset-rev": "^2.5.0",
"chai": "^4.1.1",
"chai-jquery": "^2.0.0",
"ember-block-slots": "^1.1.11",
"ember-cli": "^2.14.2",
"ember-cli-chai": "^0.4.2",
"ember-cli-dependency-checker": "^2.0.1",
"ember-cli-document-title": "^0.3.3",
"ember-cli-eslint": "^4.2.0",
"ember-cli-github-pages": "0.1.2",
"ember-cli-inject-live-reload": "^1.7.0",
"ember-cli-mocha": "^0.14.4",
"ember-cli-shims": "^1.1.0",
"ember-cli-sri": "^2.1.0",
"ember-cli-test-loader": "^2.1.0",
"ember-cli-testdouble": "^0.1.2",
"ember-cli-uglify": "^1.2.0",
"ember-code-snippet": "^2.0.0-alpha.2",
"ember-css-modules": "^0.7.2",
"ember-disable-prototype-extensions": "^1.1.3",
"ember-export-application-global": "^2.0.0",
"ember-fastboot-addon-tests": "^0.4.0",
"ember-hook": "^1.4.2",
"ember-load-initializers": "^1.0.0",
"ember-metrics": "^0.12.1",
"ember-native-dom-helpers": "^0.5.2",
"ember-resolver": "^4.3.0",
"ember-source": "^2.14.1",
"ember-truth-helpers": "^1.3.0",
"eslint": "^4.5.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-ember-suave": "^1.0.0",
"eslint-plugin-prettier": "^2.2.0",
"loader.js": "^4.6.0",
"postcss-nested": "^2.1.0",
"prettier": "^1.5.3",
"testdouble-chai": "^0.5.0"
},
"keywords": [
"ember-addon"
],
"dependencies": {
"debug": "^2.6.8",
"ember-cli-babel": "^6.7.2",
"ember-cli-htmlbars": "^2.0.3",
"ember-cli-htmlbars-inline-precompile": "^1.0.1"
},
"ember-addon": {
"configPath": "tests/dummy/config",
"demoURL": "http://alexlafroscia.com/ember-steps/"
},
"main": "index.js"
}