forked from denisnazarov/torii
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.65 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "torii",
"version": "0.8.0",
"description": "A set of clean abstractions for authentication in Ember.js",
"directories": {
"lib": "lib"
},
"main": "index.js",
"files": [
"index.js",
"addon/",
"app/",
"test-support/",
"bower.json"
],
"ember-addon": {
"demoUrl": "http://vestorly.github.io/torii/demo.html",
"configPath": "tests/dummy/config"
},
"devDependencies": {
"broccoli-asset-rev": "^2.1.2",
"connect-redirection": "0.0.1",
"ember-cli": "1.13.8",
"ember-cli-app-version": "0.5.0",
"ember-cli-content-security-policy": "0.4.0",
"ember-cli-dependency-checker": "^1.0.1",
"ember-cli-htmlbars": "0.7.9",
"ember-cli-htmlbars-inline-precompile": "^0.2.0",
"ember-cli-ic-ajax": "0.2.1",
"ember-cli-inject-live-reload": "^1.3.1",
"ember-cli-qunit": "^1.0.0",
"ember-cli-release": "0.2.3",
"ember-cli-sri": "^1.0.3",
"ember-cli-uglify": "^1.2.0",
"ember-disable-prototype-extensions": "^1.0.0",
"ember-disable-proxy-controllers": "^1.0.0",
"ember-export-application-global": "^1.0.3",
"ember-try": "0.0.8",
"grunt": "~0.4.2",
"grunt-banner": "^0.2.3",
"grunt-cli": "~0.1.11",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-concat": "~0.5.0",
"grunt-contrib-connect": "~0.7.1",
"grunt-contrib-jshint": "~0.10.0",
"grunt-testem-mincer": "~0.5.18",
"grunt-contrib-uglify": "~0.6.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-contrib-yuidoc": "~0.5.0",
"grunt-es3-safe-recast": "^0.1.0",
"grunt-es6-module-transpiler": "~0.6.0",
"jshint": "~2.5.6",
"load-grunt-config": "~0.14.0",
"load-grunt-tasks": "~1.0.0"
},
"scripts": {
"test": "ember try:testall"
},
"repository": {
"type": "git",
"url": "git://github.com/vestorly/torii.git"
},
"bugs": {
"url": "https://github.com/vestorly/torii/issues"
},
"keywords": [
"authentication",
"ember.js",
"ember-addon"
],
"author": {
"name": "Vestorly",
"email": "[email protected]"
},
"contributors": [
{
"name": "Matt Beale",
"email": "[email protected]"
},
{
"name": "Cory Forsyth",
"email": "[email protected]"
},
{
"name": "Vestorly",
"email": "[email protected]"
}
],
"maintainers": [
{
"name": "Matt Beale",
"email": "[email protected]"
},
{
"name": "Cory Forsyth",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"ember-cli-babel": "^5.1.3",
"broccoli-funnel": "^1.0.1",
"broccoli-string-replace": "^0.1.1",
"broccoli-merge-trees": "^1.1.1"
}
}