forked from denisnazarov/torii
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.03 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
80
81
82
{
"name": "torii",
"version": "0.10.1",
"description": "A set of clean abstractions for authentication in Ember.js",
"keywords": [
"authentication",
"ember.js",
"ember-addon"
],
"license": "MIT",
"author": {
"name": "Vestorly",
"email": "hello@vestorly.com"
},
"maintainers": [
{
"name": "Matt Beale",
"email": "matt.beale@madhatted.com"
},
{
"name": "Cory Forsyth",
"email": "cory.forsyth@gmail.com"
}
],
"directories": {
"lib": "lib"
},
"files": [
"index.js",
"addon/",
"app/",
"public/",
"test-support/"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/vestorly/torii.git"
},
"bugs": {
"url": "https://github.com/vestorly/torii/issues"
},
"scripts": {
"build": "ember build",
"lint:js": "eslint ./*.js addon addon-test-support app config lib server test-support tests",
"start": "ember serve",
"test": "ember try:each"
},
"dependencies": {
"ember-cli-babel": "^6.11.0"
},
"devDependencies": {
"broccoli-asset-rev": "^2.4.5",
"ember-cli": "~2.18.1",
"ember-cli-dependency-checker": "^2.1.0",
"ember-cli-eslint": "^4.2.1",
"ember-cli-htmlbars": "^2.0.1",
"ember-cli-htmlbars-inline-precompile": "^1.0.0",
"ember-cli-inject-live-reload": "^1.4.1",
"ember-cli-qunit": "^4.1.1",
"ember-cli-shims": "^1.2.0",
"ember-cli-sri": "^2.1.0",
"ember-cli-uglify": "^2.0.0",
"ember-disable-prototype-extensions": "^1.1.2",
"ember-export-application-global": "^2.0.0",
"ember-load-initializers": "^1.0.0",
"ember-native-dom-event-dispatcher": "^0.6.4",
"ember-resolver": "^4.5.0",
"ember-source": "~2.18.0",
"ember-source-channel-url": "^1.0.1",
"eslint-plugin-ember": "^5.0.1",
"eslint-plugin-node": "^5.2.1",
"loader.js": "^4.2.3"
},
"engines": {
"node": "^4.5 || 6.* || >= 7.*"
},
"ember-addon": {
"demoUrl": "http://vestorly.github.io/torii/demo.html",
"configPath": "tests/dummy/config"
}
}