-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·113 lines (113 loc) · 3.66 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
108
109
110
111
112
113
{
"name": "react-form-elements",
"version": "4.14.1",
"description": "React Form Elements",
"main": "lib/index.js",
"files": [
"/lib"
],
"author": "Kevin Isom",
"homepage": "https://kevinisom.info/react-form-elements",
"repository": {
"type": "git",
"url": "https://github.com/kevnz/react-form-elements.git"
},
"bugs": {
"url": "https://github.com/kevnz/react-form-elements/issues"
},
"peerDependencies": {
"react": "16.x || 17.x || 18.x",
"react-dom": "16.x || 17.x || 18.x"
},
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@kev_nz/eslint-config": "^4.0.0",
"@reach/router": "^1.2.1",
"@sentry/browser": "^5.5.0",
"@testing-library/react": "^8.0.5",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.3",
"coveralls": "^3.0.5",
"css-loader": "^3.0.0",
"eslint": "^6.0.1",
"gh-pages": "^2.0.1",
"hash-source": "^1.0.4",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"jest-axe": "^3.2.0",
"jest-junit": "^10.0.0",
"jsdoc-api": "^5.0.2",
"jsdoc-parse": "^3.0.1",
"jsdoc-to-markdown": "^5.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-github-corner": "^2.3.0",
"react-hot-loader": "^4.12.7",
"react-styleguidist": "^9.1.11",
"react-syntax-highlighter": "^10.3.0",
"regenerator-runtime": "^0.13.2",
"showdown": "^1.9.1",
"showdown-highlight": "^2.1.3",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.3.0",
"webpack": "^4.35.3",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"scripts": {
"build": "webpack --config ./webpack/webpack.config.js --mode production",
"start": "webpack-dev-server --config ./webpack/webpack.config.js --mode development",
"examples": "webpack --config ./webpack/webpack.config.publish.js --mode production",
"examples:debug": "webpack --config ./webpack/webpack.config.examples.js --mode production --profile",
"examples:dev": "webpack-dev-server --config ./webpack/webpack.config.examples.js --mode development",
"examples:prod": "webpack --config ./webpack/webpack.config.examples.js --mode production",
"lint": "eslint ./src",
"publish:site": "node ./scripts/publish.js",
"release": "do something to release",
"transpile": "babel src -d lib --copy-files",
"posttranspile": "jest ./lib",
"test": "jest",
"test:ci": "jest --reporters=jest-junit",
"prepare": "npm run examples && npm run transpile",
"postpublish": "git push origin --all --follow-tags && npm run publish:site",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"coverage:old": "jest ./src --coverage",
"coverage": "jest ./src --coverage --coverageReporters=text-lcov | coveralls",
"preversion": "npm run prepare",
"postversion": "npm publish"
},
"keywords": [
"react",
"react-component"
],
"jest": {
"coverageReporters": [
"json",
"lcov",
"html"
]
},
"jest-junit": {
"suiteName": "jest tests",
"outputDirectory": "./reports",
"outputName": "junit.xml",
"uniqueOutputName": "false",
"classNameTemplate": "{classname}-{title}",
"titleTemplate": "{classname}-{title}",
"ancestorSeparator": " › ",
"usePathForSuiteName": "true"
}
}