forked from merceyz/typescript-to-proptypes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.39 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
{
"name": "typescript-to-proptypes",
"version": "1.4.2",
"description": "Generate proptypes from typescript declarations",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": "https://github.com/merceyz/typescript-to-proptypes.git",
"author": "merceyz <merceyz@users.noreply.github.com>",
"license": "MIT",
"keywords": [
"proptypes",
"typescript",
"react"
],
"scripts": {
"test": "jest",
"build": "rm -rf dist && tsc",
"release": "run build && standard-version",
"prepack": "run build"
},
"devDependencies": {
"@types/babel__core": "^7.1.2",
"@types/doctrine": "^0.0.3",
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.136",
"@types/node": "^12.6.2",
"@types/prettier": "^1.19.1",
"@types/react": "^16.8.23",
"@types/uuid": "^3.4.5",
"glob": "^7.1.6",
"husky": "^4.2.3",
"jest": "^24.8.0",
"prettier": "^2.0.1",
"pretty-quick": "^2.0.1",
"react": "^16.8.6",
"standard-version": "7.1.0",
"ts-jest": "^24.2.0"
},
"dependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-syntax-class-properties": "^7.2.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/types": "^7.5.0",
"doctrine": "^3.0.0",
"lodash": "^4.17.14",
"typescript": "3.5.2",
"uuid": "^3.3.2"
},
"dependenciesMeta": {
"core-js": {
"built": false
}
},
"husky": {
"hooks": {
"pre-commit": "yarn pretty-quick --staged"
}
}
}