-
Notifications
You must be signed in to change notification settings - Fork 446
/
package.json
85 lines (85 loc) · 2.12 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
{
"name": "falcor",
"version": "2.3.2",
"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": "jest --coverage --collectCoverageFrom='./lib/**/*.js'",
"test:only": "jest",
"test:watch": "jest --watch",
"lint": "gulp lint",
"dist": "gulp build",
"doc": "gulp doc",
"perf": "gulp perfRun",
"device": "devicePerfRunner",
"deploy-ghpages": "./build/deploy-ghpages.sh"
},
"files": [
"build",
"dist",
"lib",
"browser.js",
"test"
],
"keywords": [
"JSON",
"Netflix",
"Observable",
"falcorjs"
],
"devDependencies": {
"benchmark": "^2.1.4",
"body-parser": "^1.19.0",
"browserify": "^16.5.1",
"bundle-collapser": "^1.4.0",
"coveralls": "^3.1.0",
"csv-parse": "^4.11.1",
"del": "^5.1.0",
"express": "^4.17.1",
"falcor-express": "^0.1.2",
"falcor-http-datasource": "0.1.3",
"falcor-router": "^0.8.3",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.0",
"gulp-eslint": "^6.0.0",
"gulp-license": "^1.0.0",
"gulp-rename": "^2.0.0",
"gulp-shell": "^0.8.0",
"gulp-uglify": "^3.0.2",
"jest": "^26.1.0",
"jest-cli": "^26.1.0",
"jest-mock": "^26.1.0",
"jsdoc": "^3.6.5",
"karma": "^5.1.0",
"karma-benchmark": "^1.0.4",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-junit-reporter": "^2.0.1",
"karma-safari-launcher": "^1.0.0",
"lodash": "^4.17.19",
"minimist": "^1.2.5",
"mkdirp": "^1.0.4",
"prettier": "^2.2.1",
"promise": "8.1.0",
"rx": "2.5.3",
"rxjs": "^5.5.12",
"through2": "^4.0.2",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"falcor-json-graph": "^1.1.7",
"falcor-path-syntax": "^0.2.4",
"falcor-path-utils": "^0.7.5",
"symbol-observable": "^1.2.0"
}
}