forked from tildeio/rsvp.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.19 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
{
"name": "rsvp",
"namespace": "RSVP",
"version": "4.8.1",
"description": "A lightweight library that provides tools for organizing asynchronous code",
"main": "dist/rsvp.js",
"module": "dist/rsvp.es.js",
"jsnext:main": "dist/rsvp.es.js",
"files": [
"dist",
"lib",
"!dist/test"
],
"directories": {
"lib": "lib"
},
"devDependencies": {
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoping": "6.26.0",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-es2015-computed-properties": "^6.24.1",
"babel-plugin-transform-es2015-constants": "^6.1.4",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "^6.24.1",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"babel-preset-env": "1.6.1",
"babel6-plugin-strip-class-callcheck": "^6.0.0",
"broccoli-babel-transpiler": "6.1.2",
"broccoli-concat": "^3.2.2",
"broccoli-funnel": "2.0.1",
"broccoli-merge-trees": "^2.0.0",
"broccoli-rollup": "2.0.0",
"broccoli-stew": "^1.5.0",
"broccoli-uglify-js": "^0.2.0",
"broccoli-watchify": "1.0.1",
"ember-cli": "2.18.0",
"ember-cli-dependency-checker": "2.1.0",
"git-repo-version": "1.0.1",
"mocha": "4.1.0",
"promises-aplus-tests-phantom": "^2.1.0-revise"
},
"scripts": {
"build": "ember build --environment production",
"start": "ember s",
"test": "ember test",
"test:server": "ember test --server",
"test:node": "ember test --launch Mocha",
"test:browser": "ember test --launch PhantomJS"
},
"repository": {
"type": "git",
"url": "https://github.com/tildeio/rsvp.js.git",
"dist": "[email protected]:components/rsvp.js.git"
},
"bugs": {
"url": "https://github.com/tildeio/rsvp.js/issues"
},
"browser": {
"vertx": false
},
"keywords": [
"promises",
"futures"
],
"author": "Tilde, Inc. & Stefan Penner",
"license": "MIT",
"engines": {
"node": "0.12.* || 4.* || 6.* || >= 7.*"
}
}