-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 1.87 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
71
72
73
74
75
76
77
78
79
{
"name": "introspective-prop-types",
"version": "0.0.5",
"description": "introspective-prop-types",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/markalfred/introspective-prop-types.git"
},
"bugs": {
"url": "https://github.com/markalfred/introspective-prop-types/issues"
},
"homepage": "https://github.com/markalfred/introspective-prop-types",
"author": {
"name": "Mark Battersby",
"email": "[email protected]"
},
"keywords": [
"react",
"prop",
"props",
"proptypes",
"metadata",
"introspection"
],
"files": [
"lib"
],
"main": "lib/index",
"types": "lib/index",
"exports": {
"./extra": "./lib/introspective-prop-types-extra.js"
},
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"format": "prettier --write \"{src,__tests__}/**/*.ts\"",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean && npm run format && echo Using TypeScript && tsc --version",
"build": "tsc --pretty",
"test": "jest",
"coverage": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:test": "jest --watch"
},
"dependencies": {
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"prop-types-extra": "^1.1.1"
},
"devDependencies": {
"@types/jest": "^26.0.21",
"@types/lodash": "^4.14.136",
"@types/node": "^13.1.2",
"@types/prop-types": "^15.7.1",
"coveralls": "^3.0.2",
"jest": "^26.6.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"ts-jest": "^26.5.4",
"ts-node": "^8.3.0",
"typescript": "^3.1.1"
},
"engines": {
"node": ">=10.0.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**"
],
"preset": "ts-jest"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true
}
}