-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "@js-factory/hoc",
"version": "0.3.2",
"description": "Higher order component",
"main": "./packages/index.js",
"scripts": {
"test": "jest",
"build": "babel integration --out-dir packages",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/js-factory/hoc.git"
},
"keywords": [
"hoc",
"react",
"preact",
"component",
"reusable"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-preact": "^1.1.0"
},
"author": "js-factory",
"license": "MIT",
"bugs": {
"url": "https://github.com/js-factory/hoc/issues"
},
"homepage": "https://github.com/js-factory/hoc#readme",
"peerDependencies": {
"preact": ">=8.4.2"
}
}