-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.42 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
{
"name": "relayer",
"private": false,
"version": "0.1.0",
"description": "Smart client library for talking to hypermedia APIs",
"homepage": "https://github.com/LRDesign/relayer",
"repository": {
"type": "git",
"url": "git://github.com/LRDesign/relayer.git"
},
"bugs": {
"url": "https://github.com/LRDesign/relayer/issues"
},
"main": "dist/relayer.js",
"dependencies": {
"angular": ">= 1.3.12 < 2.0",
"a1atscript": "^0.4.3",
"uri-templates": "^0.1.7",
"xing-inflector": "^0.0.2",
"xing-promise": "^0.0.1"
},
"devDependencies": {
"angular-mocks": ">= 1.3.15",
"babel": "^5.4.4",
"babelify": "^6.0.2",
"gulp": "^3.8.9",
"gulp-bump": "^0.2.2",
"gulp-connect": "^2.0.6",
"gulp-rename": "^1.2.0",
"karma": "^0.12.24",
"karma-babel-preprocessor": "^5.1.0",
"karma-browserify": "^4.1.2",
"karma-chrome-launcher": "^0.1.5",
"karma-cli": "0.0.4",
"karma-commonjs": "0.0.13",
"karma-firefox-launcher": "^0.1.4",
"karma-jasmine": "^0.2.2",
"karma-requirejs": "^0.2.2",
"karma-traceur-preprocessor": "^0.4.0",
"karma-sourcemap-loader": "git://github.com/LRDesign/karma-sourcemap-loader",
"requirejs": "^2.1.15",
"xing-traceur": "^0.0.7"
},
"scripts": {
"test": "./node_modules/.bin/gulp test:firefox; ./node_modules/.bin/karma start karma.conf.babel.js --browsers Firefox --single-run",
"xing-traceur-amd": "./node_modules/.bin/xing-traceur --annotations --types --modules='amd' --dir src build/amd --maps moduleMaps.json; ./node_modules/.bin/xing-traceur --annotations --types --modules='amd' --dir ./node_modules/a1atscript/src build/amd --maps moduleMaps.json; ./node_modules/.bin/xing-traceur --annotations --types --modules='amd' --dir ./node_modules/xing-inflector/src build/amd --maps moduleMaps.json;",
"babel-cjs": "./node_modules/.bin/babel src/relayer.js src --stage 0 --out-dir dist/cjs",
"rjs": "./node_modules/.bin/r.js -o out=./dist/relayer.es5.js baseUrl=./build/amd name=relayer optimize=none",
"amd": "npm run-script xing-traceur-amd; npm run-script rjs",
"dist": "./node_modules/.bin/gulp dist; npm run-script amd; npm run-script babel-cjs;"
},
"browserify": {
"transform": [
[
"babelify",
{
"stage": 0
}
]
]
},
"jspm": {
"main": "dist/cjs/relayer.js"
},
"author": "Hannah Howard <[email protected]>",
"license": "Apache-2.0"
}