-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.7 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
{
"name": "react-promise-container",
"version": "0.2.6",
"description": "PromiseContainer is a higher-order component to run a single or multiple promises, before rendering a component.",
"homepage": "https://github.com/Jpunt/react-promise-container#readme",
"author": "Jasper Haggenburg",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://[email protected]/Jpunt/react-promise-container.git"
},
"bugs": {
"url": "https://github.com/Jpunt/react-promise-container/issues"
},
"main": "dest/index.js",
"files": [
"dest"
],
"scripts": {
"build": "npm run build:clean && npm run build:babel && npm run build:flow && npm run build:ts",
"build:clean": "rm -rf ./dest",
"build:babel": "babel src --out-dir dest",
"build:flow": "flow-copy-source src dest",
"build:ts": "cp src/index.d.ts dest/index.d.ts",
"prepublish": "npm run build",
"test": "jest src",
"lint": "eslint src --max-warnings 0",
"flow": "flow",
"check": "npm run lint && npm run flow && npm run test",
"release": "release-it"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"eslint": "^6.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-react": "^7.12.4",
"flow-bin": "^0.95.1",
"flow-copy-source": "^2.0.3",
"jest": "^24.1.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"release-it": "^11.0.0"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.0",
"lodash": "^4.17.11"
}
}