-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 981 Bytes
/
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
{
"name": "@hyper-english/flatten-children",
"description": "React utility for flattening all children levels of a node",
"keywords": ["react", "utility", "children", "flatten"],
"version": "0.1.9",
"author": "Vitor Gomes <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.mjs",
"source": "src/index.js",
"scripts": {
"test": "jest",
"prebuild": "rm -rf dist/",
"build": "microbundle --external react",
"prepublishOnly": "yarn build",
"release": "standard-version && conventional-github-releaser --preset angular"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-0",
"babel-jest": "^24.8.0",
"conventional-github-releaser": "^3.1.3",
"jest": "^24.8.0",
"microbundle": "^0.11.0",
"react": "^16.9.0",
"standard-version": "^7.0.0"
}
}