-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1013 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
32
33
34
35
36
37
38
{
"name": "prop-desc",
"description": "Add metadata to React prop-types",
"keywords": [
"react",
"prop-types"
],
"version": "1.0.0",
"author": "Greg Bergé <berge.greg@gmail.com>",
"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 prop-types",
"prepublishOnly": "yarn build",
"release": "standard-version && conventional-github-releaser --preset angular"
},
"peerDependencies": {
"prop-types": "^15.7.0"
},
"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",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"standard-version": "^7.0.0"
}
}