forked from machty/ember-concurrency
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.87 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
{
"name": "ember-concurrency",
"version": "1.1.5",
"description": "Improved concurrency/async primitives for Ember.js",
"scripts": {
"build": "ember build",
"lint:hbs": "ember-template-lint .",
"lint:js": "eslint .",
"start": "ember serve",
"test": "ember test",
"test:all": "ember try:each"
},
"engines": {
"node": "8.* || >= 10.*"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@ember/jquery": "^0.6.1",
"@ember/optional-features": "^0.7.0",
"@embroider/macros": "^0.10.0",
"babel-eslint": "^10.0.3",
"broccoli-asset-rev": "^3.0.0",
"broccoli-clean-css": "^1.1.0",
"documentation": "^3.0.4",
"ember-cli": "~3.12.0",
"ember-cli-app-version": "^3.0.0",
"ember-cli-dependency-checker": "^3.1.0",
"ember-cli-deploy": "^1.0.2",
"ember-cli-deploy-build": "^1.1.1",
"ember-cli-deploy-git": "^1.3.3",
"ember-cli-eslint": "^5.1.0",
"ember-cli-fastboot": "^2.0.0",
"ember-cli-fastclick": "^1.5.0",
"ember-cli-github-pages": "0.0.6",
"ember-cli-htmlbars": "^3.0.1",
"ember-cli-htmlbars-inline-precompile": "^2.1.0",
"ember-cli-inject-live-reload": "^1.8.2",
"ember-cli-release": "1.0.0-beta.2",
"ember-cli-sass": "^10.0.1",
"ember-cli-template-lint": "^1.0.0-beta.1",
"ember-cli-uglify": "^2.1.0",
"ember-code-snippet": "^2.4.0",
"ember-disable-prototype-extensions": "^1.1.3",
"ember-disable-proxy-controllers": "^1.0.1",
"ember-export-application-global": "^2.0.0",
"ember-fn-helper-polyfill": "^1.0.2",
"ember-load-initializers": "^2.0.0",
"ember-modifier": "^1.0.2",
"ember-notify": "^5.3.0",
"ember-qunit": "^4.4.1",
"ember-qunit-assert-helpers": "^0.2.2",
"ember-resolver": "^5.0.1",
"ember-router-service-polyfill": "^1.0.3",
"ember-sinon": "^2.1.0",
"ember-source": "~3.12.0",
"ember-source-channel-url": "^1.1.0",
"ember-try": "^1.1.0",
"eslint": "^6.5.1",
"eslint-plugin-ember": "^6.2.0",
"eslint-plugin-node": "^9.0.1",
"jsdom": "^11.6.2",
"loader.js": "^4.7.0",
"prember": "0.3.0-alpha.3",
"qunit-dom": "^0.8.4",
"sass": "^1.22.12"
},
"keywords": [
"ember-addon",
"concurrency",
"task",
"tasks",
"cancellation",
"cancelation"
],
"repository": "https://github.com/machty/ember-concurrency",
"license": "MIT",
"author": "Alex Matchneer <[email protected]>",
"directories": {
"doc": "doc",
"test": "tests"
},
"dependencies": {
"ember-cli-babel": "^7.7.3",
"ember-compatibility-helpers": "https://github.com/DanielGroeger/ember-compatibility-helpers.git#7a22c0b",
"ember-maybe-import-regenerator": "^0.1.6"
},
"resolutions": {
"ip-regex": "^2.1.0"
},
"ember-addon": {
"configPath": "tests/dummy/config",
"demoURL": "http://ember-concurrency.com/",
"versionCompatibility": {
"ember": ">=1.13.0"
}
}
}