-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
78 lines (78 loc) · 1.95 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
{
"name": "seapig",
"version": "2.4.2",
"description": "Utility for generalized composition of React components.",
"main": "dist/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"types": "./index.d.ts",
"scripts": {
"build": "npm run build:es && npm run build:cjs",
"build:es": "BABEL_ENV=es babel src --out-dir es",
"build:cjs": "BABEL_ENV=cjs babel src --out-dir dist",
"clean": "trash dist es",
"lint": "eslint . --ignore-path .gitignore",
"prebuild": "npm run clean",
"prepublish": "npm run lint && npm run test && npm run build",
"test": "jest",
"flow": "flow"
},
"pre-commit": [
"lint",
"test"
],
"homepage": "https://github.com/enkidevs/seapig.git",
"repository": {
"type": "git",
"url": "https://github.com/enkidevs/seapig.git"
},
"bugs": {
"url": "https://github.com/enkidevs/seapig/issues"
},
"keywords": [
"react",
"react-component",
"composition",
"compound",
"validation",
"props",
"children",
"shape",
"javascript"
],
"files": [
"es",
"dist",
"index.d.ts"
],
"author": "Nemanja Stojanovic <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/preset-env": "^7.3.4",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^7.31.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-flowtype": "^7.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.12.4",
"flow-bin": "^0.183.1",
"jest": "^27.0.6",
"pre-commit": "^1.2.2",
"prettier": "^2.0.1",
"react": "^17.0.1",
"trash-cli": "^4.0.0"
},
"dependencies": {
"invariant": "^2.2.4"
},
"peerDependencies": {
"react": ">=15"
}
}