-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
70 lines (70 loc) · 1.51 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
63
64
65
66
67
68
69
70
{
"name": "typescript-to-proptypes",
"packageManager": "[email protected]",
"version": "2.2.1",
"description": "Generate proptypes from typescript declarations",
"main": "dist/index.js",
"engines": {
"node": ">=10.3.0"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/merceyz/typescript-to-proptypes.git"
},
"author": "merceyz <[email protected]>",
"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": "^8.0.0",
"glob": "^7.1.6",
"husky": "^4.2.3",
"jest": "^26.0.1",
"prettier": "^2.0.1",
"pretty-quick": "^2.0.1",
"react": "^16.8.6",
"standard-version": "^8.0.0",
"ts-jest": "^26.1.0"
},
"dependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-syntax-class-properties": "^7.10.4",
"@babel/plugin-syntax-jsx": "^7.10.4",
"@babel/types": "^7.11.0",
"doctrine": "^3.0.0",
"lodash": "^4.17.14",
"tslib": "^1.13.0",
"typescript": "3.8.3",
"uuid": "^8.1.0"
},
"dependenciesMeta": {
"core-js": {
"built": false
}
},
"husky": {
"hooks": {
"pre-commit": "yarn pretty-quick --staged"
}
}
}