forked from mainmatter/ember-simple-auth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 3.15 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
{
"name": "ember-simple-auth",
"version": "1.3.0",
"description": "A lightweight library for implementing authentication/authorization with Ember.js applications.",
"keywords": [
"ember-addon"
],
"license": "MIT",
"author": "simplabs GmbH",
"directories": {
"doc": "doc",
"test": "tests"
},
"repository": "https://github.com/simplabs/ember-simple-auth",
"scripts": {
"build": "ember build",
"diagrams": "mermaid --sequenceConfig guides/assets/esa-initial-flow.config.json --width 2400 -o guides/assets guides/assets/esa-initial-flow.txt",
"fastboot": "echo \"Please also run npm start\"; ember fastboot --serve-assets",
"lint": "eslint app addon blueprints config server test-support tests *.js",
"start": "ember server",
"test": "ember test",
"test:all": "ember try:each",
"test:fastboot": "mocha fastboot-tests",
"test:node": "mocha node-tests node-tests/blueprints"
},
"dependencies": {
"base-64": "^0.1.0",
"broccoli-file-creator": "^1.1.1",
"broccoli-funnel": "^1.2.0",
"broccoli-merge-trees": "^2.0.0",
"ember-cli-babel": "^6.0.0",
"ember-cli-is-package-missing": "^1.0.0",
"ember-cookies": "^0.0.13",
"ember-fetch": "^2.1.0 || ^3.0.0",
"ember-getowner-polyfill": "^1.1.0",
"silent-error": "^1.0.0"
},
"devDependencies": {
"body-parser": "^1.17.2",
"bootstrap": "^3.3.7",
"broccoli-asset-rev": "^2.4.5",
"broccoli-yuidoc": "^3.0.0",
"chai": "^4.0.2",
"cors": "^2.8.1",
"ember-cli": "~2.12.1",
"ember-cli-addon-tests": "^0.7.0",
"ember-bootstrap": "^1.0.0-alpha.12",
"ember-cli-blueprint-test-helpers": "^0.17.1",
"ember-cli-chai": "^0.4.0",
"ember-cli-content-security-policy": "~0.6.0",
"ember-cli-dependency-checker": "^2.0.0",
"ember-cli-eslint": "^4.0.0",
"ember-cli-fastboot": "1.0.0-rc3",
"ember-cli-htmlbars": "^2.0.0",
"ember-cli-htmlbars-inline-precompile": "^0.4.3",
"ember-cli-inject-live-reload": "^1.4.1",
"ember-cli-mocha": "^0.14.1",
"ember-cli-pretender": "^1.0.1",
"ember-cli-shims": "^1.1.0",
"ember-cli-sri": "^2.1.0",
"ember-cli-uglify": "^1.2.0",
"ember-data": "^2.13.1",
"ember-disable-prototype-extensions": "^1.1.0",
"ember-export-application-global": "^2.0.0",
"ember-load-initializers": "^1.0.0",
"ember-resolver": "^4.1.0",
"ember-sinon": "~0.7.0",
"ember-source": "^2.13.1",
"eslint-config-simplabs": "^0.4.0",
"eslint-plugin-ember": "^3.1.2",
"eslint-plugin-mocha": "^4.9.0",
"express": "^4.15.2",
"git-repo-version": "^0.4.1",
"glob": "^7.1.1",
"handlebars": "~4.0.6",
"loader.js": "^4.5.1",
"marked": "^0.3.6",
"mermaid": "^7.0.0",
"mocha": "^3.4.1",
"mocha-only-detector": "0.1.0",
"morgan": "^1.8.1",
"request": "^2.81.0",
"rimraf": "^2.6.1",
"rsvp": "^3.5.0",
"sinon-chai": "~2.11.0",
"torii": "~0.9.5"
},
"engines": {
"node": ">= 4"
},
"ember-addon": {
"configPath": "tests/dummy/config",
"versionCompatibility": {
"ember": ">=1.12"
}
},
"greenkeeper": {
"ignore": [
"eslint-plugin-ember",
"eslint-plugin-mocha"
]
}
}