This repository has been archived by the owner on Nov 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.71 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
{
"name": "react-async-effect",
"version": "0.7.2",
"description": "A component to help manage work outside render cycle",
"main": "dist/react-async-effect.cjs.js",
"jsnext:main": "dist/react-async-effect.esm.js",
"module": "dist/react-async-effect.esm.js",
"files": ["dist", "typings", "preact"],
"keywords": ["async", "react", "effect"],
"scripts": {
"prepublish": "npm run build",
"add-contributor": "kcd-scripts contributors add",
"test": "kcd-scripts test",
"test:update": "kcd-scripts test --updateSnapshot",
"build": "kcd-scripts build --bundle --p-react",
"lint": "kcd-scripts lint",
"format": "kcd-scripts format",
"validate": "kcd-scripts validate",
"precommit": "kcd-scripts precommit"
},
"author": "Edygar de Lima Oliveira <[email protected]>",
"license": "MIT",
"peerDependencies": {
"prop-types": ">=15",
"react": ">=15"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-flow-react-proptypes": "^9.1.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.9.0",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.59.0",
"kcd-scripts": "^0.30.3",
"preact": "^8.2.6",
"preact-render-to-string": "^3.7.0",
"prettier": "^1.8.2",
"react": "^16.0.0"
},
"dependencies": {},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js"
},
"babel": {
"presets": ["kcd-scripts/babel"],
"plugins": ["flow-react-proptypes", "transform-flow-strip-types"]
}
}