-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.45 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
{
"name": "react-nanny",
"description": "Utils to manage your React Children; find and filter children by type or custom function, enforce child content, and more!",
"scripts": {
"compile": "npm run lint && rm -rf dist/lib && tsc && tsc --build tsconfig.es5.json && npm run readme",
"lint": "eslint . --ext .ts",
"readme": "node bin/generateReadme.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheSpicyMeatball/react-nanny.git"
},
"keywords": [
"react",
"children"
],
"author": "Michael Paravano",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheSpicyMeatball/react-nanny/issues"
},
"homepage": "https://github.com/TheSpicyMeatball/react-nanny#readme",
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"console-log-it": "^1.0.0",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.0",
"directory-tree": "^2.2.5",
"ejs": "^3.1.5",
"eslint": "^7.17.0",
"hosted-git-info": ">=2.8.9",
"jest": "^26.6.3",
"js-htmlencode": "^0.3.0",
"jsdoc-parse-plus": "^1.3.0",
"lodash": "^4.17.21",
"nyc": "^15.1.0",
"typescript": "^4.1.3"
},
"dependencies": {
"react": "^17.0.1"
}
}