forked from Netflix/falcor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.31 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
{
"name": "falcor",
"version": "2.0.1",
"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"
},
"license": "Apache-2.0",
"scripts": {
"test": "gulp test-coverage",
"prepare": "npm run dist",
"test:only": "mocha test/index.js",
"test:only:inspect": "mocha --inspect-brk test/index.js",
"lint": "gulp lint",
"dist": "gulp all",
"doc": "gulp doc",
"perf": "gulp perf-run",
"device": "devicePerfRunner",
"deploy-ghpages": "./build/deploy-ghpages.sh"
},
"files": [
"build",
"dist",
"lib",
"browser.js",
"test"
],
"keywords": [
"JSON",
"Netflix",
"Observable",
"falcorjs"
],
"devDependencies": {
"after": "^0.8.2",
"benchmark": "^2.1.4",
"body-parser": "^1.13.3",
"browserify": "^14.4.0",
"bundle-collapser": "^1.2.1",
"chai": "^4.1.2",
"coveralls": "^2.11.2",
"csv-parse": "^1.2.2",
"del": "^3.0.0",
"express": "^4.16.3",
"falcor-express": "^0.1.2",
"falcor-http-datasource": "0.1.3",
"falcor-router": "^0.4.0",
"falcor-router-demo": "^1.0.3",
"grunt": "^1.0.2",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-eslint": "^2.0.0",
"gulp-istanbul": "^0.3.1",
"gulp-license": "^1.0.0",
"gulp-mocha": "^1.1.0",
"gulp-rename": "^1.2.0",
"gulp-shell": "^0.4.1",
"gulp-uglify": "^1.2.0",
"jsdoc": "^3.3.0-beta3",
"karma": "^1.7.1",
"karma-benchmark": "^0.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.0.1",
"karma-junit-reporter": "^1.2.0",
"karma-safari-launcher": "^1.0.0",
"lodash": "^4.17.5",
"minimist": "^1.1.0",
"mkdirp": "^0.5.1",
"mocha": "^4.0.1",
"promise": "8.0.1",
"rx": "2.5.3",
"rxjs": "^5.5.8",
"sinon": "^3.2.1",
"through2": "^2.0.3",
"underscore": "^1.8.3",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"falcor-asap": "2.0.6",
"falcor-json-graph": "1.1.7",
"falcor-path-syntax": "0.2.4",
"falcor-path-utils": "0.5.1",
"symbol-observable": "^1.2.0"
}
}