-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
120 lines (120 loc) · 3.85 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
114
115
116
117
118
119
120
{
"name": "grommet-icons",
"version": "4.12.1",
"main": "index.js",
"module": "es6/index.js",
"jsnext:main": "es6/index.js",
"sideEffects": false,
"description": "iconography for grommet apps.",
"authors": [
"Alan Souza",
"Bryan Jacquot",
"Chris Carlozzi",
"Eric Soderberg",
"Shimrit Yacobi"
],
"homepage": "http://grommet.io/grommet-icons/",
"bugs": "https://github.com/grommet/grommet-icons/issues",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/grommet/grommet-icons.git"
},
"scripts": {
"build": "webpack --mode production && babel ./src/js/ --ignore '__tests__' --out-dir ./dist --copy-files && cross-env BABEL_ENV=es6 babel ./src/js/ --ignore '__tests__' --out-dir ./dist/es6 --copy-files && babel LICENSE COPYRIGHT.md --out-dir ./dist --copy-files",
"generate-icons": "babel-node ./tools/generate-icons",
"generate-markdown": "babel-node ./tools/generate-markdown",
"release-stable": "babel-node ./tools/release-stable",
"lint": "eslint src",
"storybook": "storybook dev -p 9002 -c storybook",
"build-storybook": "storybook build -c storybook -o storybook-static",
"test": "jest",
"test-update": "jest --updateSnapshot",
"test-watch": "jest --watchAll"
},
"peerDependencies": {
"react": "^16.6.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.6.0 || ^17.0.0 || ^18.0.0",
"styled-components": ">= 5.x"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/node": "^7.24.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-do-expressions": "^7.24.7",
"@babel/plugin-proposal-export-default-from": "^7.24.7",
"@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-proposal-pipeline-operator": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@storybook/addon-knobs": "7.0.2",
"@storybook/addons": "7.0.20",
"@storybook/react": "7.0.20",
"@storybook/react-webpack5": "7.0.20",
"@testing-library/dom": "^10.3.1",
"@testing-library/react": "^16.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"babel-plugin-styled-components": "^2.1.4",
"babel-plugin-transform-imports": "^2.0.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"debug": "^4.3.5",
"del": "^6.1.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-parallel": "^1.2.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"fs-extra": "^11.2.0",
"jest-cli": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-styled-components": "^7.2.0",
"just-camel-case": "^6.2.0",
"just-pascal-case": "^3.2.0",
"pre-commit": "^1.2.2",
"prettier": "^3.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"simple-git": "^3.25.0",
"storybook": "7.0.20",
"styled-components": "^5.3.8",
"svgo": "^3.3.2",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"xml2js": "^0.6.2"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "jsdom",
"coverageReporters": [
"lcov"
],
"collectCoverageFrom": [
"src/**/*.{js}"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
],
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](dist|node_modules)[/\\\\]"
]
},
"resolutions": {
"jackspeak": "2.1.1"
},
"pre-commit": [
"lint",
"test"
]
}