-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.88 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.88 KB
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
{
"name": "idsreslib",
"version": "1.4.1",
"description": "IDS Resource Library",
"main": "index.js",
"contributors": [
{
"name": "Steve Ramage",
"email": "sramage@nucleuslabs.com",
"url": "https://nucleuslabs.com"
}
],
"repository": "https://github.com/nucleuslabs/idsreslib",
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/plugin-proposal-decorators": "^7.17.2",
"@babel/plugin-proposal-export-default-from": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@svgr/webpack": "^6.2.1",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^14.0.0",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.3",
"eslint": "^7.32.0",
"eslint-codeframe-formatter": "^1.0.2",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-webpack-plugin": "^3.1.1",
"jest": "^27.5.1",
"jest-extended": "^2.0.0",
"node-polyfill-webpack-plugin": "^1.1.4",
"react": "^18",
"react-dom": "^18",
"webpack": "5.76.0",
"webpack-cli": "^4.9.2"
},
"scripts": {
"test": "jest --env=jsdom",
"lint": "node_modules/.bin/eslint ./ --ext .js --format 'node_modules/eslint-codeframe-formatter'"
},
"jest": {
"testEnvironment": "jest-environment-jsdom",
"testMatch": [
"**/__tests__/**/*.(spec|test).[jt]s?(x)"
],
"transform": {
"\\.[j]sx?$": "babel-jest"
},
"setupFilesAfterEnv": [
"jest-extended"
],
"collectCoverageFrom": [
"./dist/index.js",
"./src/*.js*"
]
}
}