forked from Netflix/falcor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.35 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
{
"name": "falcor",
"version": "0.1.12",
"description": "A JavaScript library for efficient data fetching.",
"main": "./lib/index.js",
"homepage": "https://github.com/Netflix/falcor",
"author": {
"name": "Netflix",
"url": "https://github.com/Netflix/falcor/authors.txt"
},
"repository": {
"type": "git",
"url": "https://github.com/Netflix/falcor.git"
},
"licenses": [
{
"type": "Apache License, Version 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"scripts": {
"test": "gulp test-coverage",
"dist": "gulp build",
"doc": "gulp doc",
"perf": "gulp perf-run",
"deploy-ghpages": "./build/deploy-ghpages.sh"
},
"files": [
"build",
"dist",
"lib",
"test"
],
"keywords": [
"JSON",
"Netflix",
"Observable",
"falcorjs"
],
"devDependencies": {
"benchmark": "^1.0.0",
"browserify": "10.2.0",
"bundle-collapser": "1.2.0",
"chai": "~1.9.1",
"colors": "~0.6.2",
"coveralls": "^2.11.2",
"csv-parse": "^0.1.3",
"del": "^1.2.1",
"diff": "~1.0.8",
"express": "~4.9.0",
"falcor-express": "0.1.2",
"falcor-http-datasource": "0.1.1",
"falcor-router": "0.2.6",
"grunt": "^0.4.5",
"gulp": "~3.8.8",
"gulp-bench": "~1.0.3",
"gulp-concat": "~2.4.1",
"gulp-eslint": "^0.12.0",
"gulp-istanbul": "~0.3.1",
"gulp-istanbul-enforcer": "~1.0.3",
"gulp-license": "~1.0.0",
"gulp-mocha": "~1.1.0",
"gulp-plumber": "~0.6.5",
"gulp-rename": "~1.2.0",
"gulp-shell": "~0.4.1",
"gulp-uglify": "^1.2.0",
"istanbul": "~0.3.2",
"jsdoc": "~3.3.0-beta3",
"karma": "^0.12.37",
"karma-benchmark": "^0.4.0",
"karma-chrome-launcher": "^0.2.0",
"karma-firefox-launcher": "^0.1.6",
"karma-junit-reporter": "^0.2.2",
"karma-safari-launcher": "^0.1.1",
"lodash": "~2.4.1",
"minifyify": "7.0.0",
"minimist": "~1.1.0",
"mkdirp": "^0.5.1",
"mocha": "~1.21.4",
"run-sequence": "^1.0.2",
"sinon": "^1.15.4",
"through2": "~0.6.1",
"uglifyify": "~2.1.1",
"underscore": "~1.6.0",
"vinyl-source-stream": "^1.1.0",
"xmlhttprequest": "~1.7.0"
},
"dependencies": {
"asap": "~2.0.3",
"falcor-json-graph": "1.1.5",
"falcor-path-syntax": "0.2.1",
"falcor-path-utils": "0.3.0",
"promise": "7.0.0",
"rx": "2.5.3"
}
}