forked from enkidevs/seapig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.6 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
{
"name": "seapig",
"version": "0.3.1",
"description": "Utility for generalized composition of React components.",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"clean": "trash dist",
"lint": "eslint . --ignore-path .gitignore",
"prebuild": "npm run clean",
"prepublish": "npm run test && npm run build",
"pretest": "npm run lint",
"test": "jest"
},
"pre-commit": [
"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": [
"dist",
"src",
"!**/__tests__/**"
],
"author": "Nemanja Stojanovic <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"jest-cli": "^20.0.4",
"pre-commit": "^1.2.2",
"prettier": "^1.5.2",
"trash-cli": "^1.4.0"
},
"dependencies": {
"invariant": "^2.2.1",
"react": "^15.6.1"
}
}