This repository has been archived by the owner on Jun 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
76 lines (76 loc) · 2.08 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
{
"name": "react-compose",
"description": "Compose react components with a functional api",
"main": "lib/index.js",
"scripts": {
"clean": "./node_modules/rimraf/bin.js lib",
"test": "npm run build && ./node_modules/jest-cli/bin/jest.js",
"build": "./node_modules/babel-cli/bin/babel.js src --out-dir lib",
"pkgfiles": "./node_modules/pkgfiles/bin/pkgfiles.js",
"prepublish": "npm run clean && npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"files": [
"lib",
"!lib/__tests__"
],
"release": {
"verifyConditions": "condition-circle"
},
"repository": {
"type": "git",
"url": "https://github.com/UniversalAvenue/react-compose.git"
},
"keywords": [
"React",
"compose"
],
"author": "Daniel Werthén <[email protected]> (https://github.com/danielwerthen)",
"license": "MIT",
"bugs": {
"url": "https://github.com/UniversalAvenue/react-compose/issues"
},
"homepage": "https://github.com/UniversalAvenue/react-compose#readme",
"peerDependencies": {
"react": ">=15.5.4"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^7.2.3",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"condition-circle": "^1.2.0",
"cz-conventional-changelog": "^2.0.0",
"enzyme": "^2.3.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"jest-cli": "^20.0.4",
"pkgfiles": "^2.3.0",
"react": ">=15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"redux-thunk": "^2.1.0",
"rimraf": "^2.4.4",
"semantic-release": "^6.3.6"
},
"jest": {
"roots": [
"lib"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"classnames": "^2.2.3",
"lodash": "^4.0.0",
"prop-types": "^15.5.10"
}
}