-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
107 lines (107 loc) · 3.34 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "prop-types-tools",
"version": "2.17.0",
"description": "Custom React PropType validators",
"main": "index.js",
"dependencies": {
"array.prototype.find": "^2.2.3",
"array.prototype.flatmap": "^1.3.2",
"function.prototype.name": "^1.1.6",
"is-regex": "^1.1.4",
"isarray": "^2.0.5",
"object-is": "^1.1.6",
"object.assign": "^4.1.5",
"object.entries": "^1.1.8",
"prop-types": "^15.8.1",
"prop-types-exact": "^1.2.5",
"react-is": "^16.13.1 || ^17.0.1"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@ljharb/eslint-config": "^21.1.1",
"airbnb-browser-shims": "^3.3.0",
"auto-changelog": "^2.4.0",
"babel-plugin-istanbul": "^5.2.0",
"babel-plugin-transform-replace-object-assign": "^2.0.0",
"babel-preset-airbnb": "^3.3.2",
"chai": "^4.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-helper": "^1.3.10",
"eslint": "=8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.35.0",
"mocha": "^3.5.3",
"mock-env": "^0.2.0",
"npmignore": "^0.3.1",
"nyc": "^10.3.2",
"object-inspect": "^1.13.2",
"object.values": "^1.2.0",
"react": "^0.14 || ^15.0.0 || ^16.0.0-alpha",
"reflect.ownkeys": "^1.1.4",
"rimraf": "^2.7.1",
"safe-publish-latest": "^2.0.0"
},
"peerDependencies": {
"react": "^0.14 || ^15.0.0 || ^16.0.0-alpha"
},
"scripts": {
"prepack": "npmignore --auto --commentLines=autogenerated",
"prepublishOnly": "safe-publish-latest",
"prepublish": "not-in-publish || npm run prepublishOnly",
"pretest": "npm run lint",
"lint": "eslint --ext js,jsx .",
"test:prepare": "npm run react && npm run build:test",
"test": "npm run build:test && npm run tests-only",
"tests-only": "nyc npm run mocha build-test",
"test:all": "npm run tests-only && npm run react:14 && npm run tests-only && npm run react:15 && npm run tests-only",
"posttest": "npx npm@'>=10.2' audit --production",
"prebuild:test": "rimraf build-test",
"build:test": "babel test --out-dir build-test --source-maps",
"mocha": "mocha --recursive build-test/helpers/_failTestsOnErrors",
"react": "enzyme-adapter-react-install 16",
"version": "auto-changelog && git add CHANGELOG.md",
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ljharb/prop-types-tools.git"
},
"keywords": [
"react",
"propTypes",
"airbnb",
"prop",
"types",
"validator",
"validation"
],
"author": "Jordan Harband <[email protected]>",
"funding": {
"url": "https://github.com/sponsors/ljharb"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ljharb/prop-types-tools/issues"
},
"homepage": "https://github.com/ljharb/prop-types-tools#readme",
"engines": {
"node": ">= 0.10"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": false,
"commitLimit": false,
"backfillLimit": false,
"hideCredit": true,
"startingVersion": "2.17.0"
},
"publishConfig": {
"ignore": [
".github/workflows"
]
}
}