-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 2.76 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
{
"name": "react-loading-switch",
"version": "1.2.0",
"description": "React component API for easily composing the render logic surrounding react-apollo data fetching, loading, and error handling",
"browser": "lib/index.js",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"lib/"
],
"scripts": {
"build:babel": "babel src/ -d lib",
"build:flow": "flow-copy-source src lib",
"build:clean": "rm -rf lib",
"build": "npm run build:babel && npm run build:flow",
"ci-test": "npm run build && npm run lint && npm run flow && npm run jest",
"flow-typed-install": "flow-typed install",
"flow": "flow",
"jest": "jest --testMatch **/test/*.js --verbose",
"lint-fix": "npm run lint -- --fix",
"lint": "./node_modules/.bin/eslint src/.",
"prepublishOnly": "npm run ci-test && npm run build",
"test-update": "npm run jest -- -u",
"test": "npm run jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vydia/react-loading-switch.git"
},
"jest": {
"verbose": true
},
"keywords": [
"react",
"react-apollo",
"apollo",
"apollo-client",
"rendering",
"composable",
"component",
"data",
"loading",
"error",
"fetch",
"api",
"render",
"switch",
"logic",
"apollo-link"
],
"author": "TSMMark",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vydia/react-loading-switch/issues"
},
"peerDependencies": {
"react": ">=16.0.0"
},
"homepage": "https://github.com/Vydia/react-loading-switch#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-plugin-flow-runtime": "^0.17.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-runtime": "^6.26.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-compat": "^2.2.0",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"flow-bin": "^0.71.0",
"flow-copy-source": "^1.3.0",
"flow-typed": "^2.4.0",
"jest": "^22.4.3",
"lodash": "^4.17.10",
"react-test-renderer": "^16.3.2",
"regenerator-runtime": "^0.11.1"
},
"dependencies": {}
}