-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1.38 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
{
"name": "decorate-component-with-props",
"version": "1.2.0",
"description": "Utility function for decorating a React component with any props",
"main": "lib/index.js",
"scripts": {
"build": "BABEL_ENV=production babel --out-dir='lib' --ignore='__tests__/*' src",
"lint": "npm run lint:eslint && npm run lint:jscs",
"lint:eslint": "eslint ./",
"lint:eslint:fix": "eslint --fix ./",
"lint:jscs": "jscs ./",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/belle-ui/decorateComponentWithProps.git"
},
"author": "Julian Krispel-Samsel",
"license": "MIT",
"bugs": {
"url": "https://github.com/belle-ui/decorateComponentWithProps/issues"
},
"homepage": "https://github.com/belle-ui/decorateComponentWithProps#readme",
"keywords": [],
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"babel": "^6.5.1",
"babel-cli": "^6.5.1",
"babel-core": "^6.5.1",
"babel-eslint": "^4.1.8",
"babel-plugin-react-transform": "^2.0.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "5.0.0",
"eslint-plugin-mocha": "^1.1.0",
"eslint-plugin-react": "^3.16.1",
"jscs": "^2.11.0",
"react": "^15.0.0-rc.2"
}
}