-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
68 lines (68 loc) · 2.13 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
{
"name": "feather-icons-react",
"version": "0.7.0",
"description": "Feather Icons as a React component.",
"main": "build/index.js",
"scripts": {
"test": "npm run test",
"build": "npm run lint && babel src -d build --copy-files && npm run build-exports && babel build -d build",
"build-exports": "node generate-icon-exports.js",
"lint": "eslint src",
"lint:watch": "esw -w lib/**",
"lint:fix": "eslint --fix",
"prepare": "npm run lint:fix && npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ianmiller347/feather-icons-react.git"
},
"keywords": [
"feather",
"icons",
"react",
"svg"
],
"author": "Ian J. Miller",
"license": "ISC",
"bugs": {
"url": "https://github.com/ianmiller347/feather-icons-react/issues"
},
"homepage": "https://github.com/ianmiller347/feather-icons-react#readme",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^7.6.8",
"@storybook/addon-essentials": "^7.6.8",
"@storybook/addon-interactions": "^7.6.8",
"@storybook/addon-links": "^7.6.8",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.8",
"@storybook/react": "^7.6.8",
"@storybook/react-webpack5": "^7.6.8",
"@storybook/test": "^7.6.8",
"@storybook/testing-library": "^0.2.2",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.2.5",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-watch": "^6.0.1",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"storybook": "^7.6.8"
},
"peerDependencies": {
"react": "^16.8.4 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0"
},
"types": "index.d.ts",
"packageManager": "yarn@4.0.2"
}