forked from fenichelar/ember-simple-auth-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.36 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
{
"name": "ember-cli-simple-auth-token",
"version": "0.5.0",
"description": "An authenticator and authorizer for Ember Simple Auth that is compatible with token-based authentication like JWT in Ember CLI applications.",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"start": "ember server",
"build": "ember build",
"test": "ember test"
},
"repository": "https://github.com/jpadilla/ember-cli-simple-auth-token",
"engines": {
"node": ">= 0.10.0"
},
"author": {
"name": "José Padilla",
"email": "[email protected]",
"url": "http://jpadilla.com"
},
"contributors": [
"Giovanni Collazo <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"body-parser": "^1.2.0",
"broccoli-asset-rev": "0.3.0",
"broccoli-ember-hbs-template-compiler": "^1.6.1",
"broccoli-merge-trees": "^0.2.0",
"broccoli-static-compiler": "^0.2.1",
"ember-cli": "0.1.1",
"ember-cli-content-security-policy": "0.2.0",
"ember-cli-ic-ajax": "0.1.1",
"ember-cli-inject-live-reload": "^1.2.2",
"ember-cli-qunit": "0.1.0",
"ember-data": "1.0.0-beta.10",
"express": "^4.8.5",
"glob": "^4.0.5"
},
"keywords": [
"ember-addon",
"token",
"jwt",
"auth",
"authentication",
"authorization"
],
"ember-addon": {
"configPath": "tests/dummy/config"
}
}