forked from eneuhauser/ember-json-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.66 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
{
"name": "ember-json-api",
"description": "Ember Data adapter for JSON API.",
"version": "0.4.4",
"homepage": "http://github.com/kurko/ember-json-api",
"author": "Dali Zheng",
"contributors": [
{
"name": "Alexandre de Oliveira",
"email": "[email protected]"
},
{
"name": "Stefan Penner",
"email": "[email protected]"
},
{
"name": "Eric Neuhauser",
"email": "[email protected]"
}
],
"main": "dist/json-api-adapter.js",
"repository": {
"type": "git",
"url": "http://github.com/kurko/ember-json-api"
},
"bugs": {
"url": "http://github.com/kurko/ember-json-api/issues"
},
"keywords": [
"ember",
"ember-addon"
],
"ember-addon": {
"main": "ember-addon-main.js"
},
"scripts": {
"build": "rm -rf dist && BROCCOLI_ENV=production ./node_modules/.bin/broccoli build dist",
"build-test": "rm -rf test_build && ./node_modules/broccoli-cli/bin/broccoli build test_build",
"test": "npm run build-test && phantomjs test_build/tests/runner.js test_build/tests/index.html && rm -rf test_build",
"test-server": "./node_modules/.bin/broccoli serve",
"serve": "./node_modules/.bin/broccoli serve"
},
"devDependencies": {
"bower": "",
"broccoli": "^0.13.1",
"broccoli-bower": "0.2.0",
"broccoli-cli": "0.0.1",
"broccoli-env": "^0.0.1",
"broccoli-es6-concatenator": "0.1.4",
"broccoli-es6-transpiler": "0.1.0",
"broccoli-merge-trees": "0.1.3",
"broccoli-static-compiler": "0.1.4",
"broccoli-template": "0.1.0",
"broccoli-uglify-js": "0.1.3",
"ember-cli": "^0.1.1",
"testem": "0.6.16"
},
"license": "MIT"
}