UNPKG

1.47 kBJSONView Raw
1{
2 "name": "falcor-json-graph",
3 "version": "2.2.2",
4 "description": "A set of factory functions for creating JSON Graph values.",
5 "main": "lib/index.js",
6 "scripts": {
7 "flow": "flow",
8 "flow-coverage": "flow-coverage-report",
9 "lint": "eslint src/ test/",
10 "prepare": "test -e lib && rm -r lib; flow-remove-types --out-dir lib/ src/ && (cd src/; find * -type f -name '*.js' -exec cp {} ../lib/{}.flow \\;)",
11 "prettier": "prettier --write src/**.js test/**.js",
12 "check-formatting": "prettier --list-different src/**.js test/**.js",
13 "test": "mocha -r flow-remove-types/register",
14 "release": "standard-version"
15 },
16 "repository": {
17 "type": "git",
18 "url": "https://github.com/Netflix/falcor-json-graph.git"
19 },
20 "author": "Jafar Husain <jhusain@gmail.com>",
21 "license": "Apache 2.0",
22 "bugs": {
23 "url": "https://github.com/Netflix/falcor-json-graph/issues"
24 },
25 "keywords": [
26 "falcorjs",
27 "Observable",
28 "JSON",
29 "JSON Graph"
30 ],
31 "homepage": "https://github.com/Netflix/falcor-json-graph",
32 "dependencies": {},
33 "devDependencies": {
34 "@lrowe/eslint-plugin-flow-remove-types": "^0.0.1",
35 "chai": "^4.1.2",
36 "eslint": "^4.12.1",
37 "flow-bin": "^0.62.0",
38 "flow-coverage-report": "^0.4.0",
39 "flow-remove-types": "^1.2.3",
40 "mocha": "^4.0.1",
41 "prettier": "^1.9.1",
42 "standard-version": "^4.2.0"
43 },
44 "flow-coverage-report": {
45 "includeGlob": [
46 "src/**/*.js"
47 ]
48 }
49}