This repository was archived by the owner on Aug 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.54 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
{
"name": "react-simple-svg",
"version": "1.1.0",
"description": "Inline SVGs in React made easy",
"keywords": [
"svg",
"inline",
"inline-svg",
"vector-graphics",
"react",
"component",
"react-component"
],
"main": "lib/SimpleSvg.js",
"module": "lib/SimpleSvg.es",
"author": "Samuel Meuli <me@samuelmeuli.com>",
"repository": "github:samuelmeuli/react-simple-svg",
"license": "MIT",
"scripts": {
"start": "npm-run-all build:rollup --parallel start:*",
"start:rollup": "rollup --config --sourcemap --watch",
"start:storybook": "start-storybook --port 3000 -s stories/public",
"build": "run-s build:*",
"build:rollup": "rollup --config",
"build:storybook": "build-storybook --output-dir dist -s stories/public",
"lint": "eslint ."
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn lint"
}
},
"dependencies": {
"prop-types": "^15.6.2"
},
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-storysource": "^5.0.5",
"@storybook/addons": "^5.0.5",
"@storybook/react": "^5.0.5",
"babel-loader": "^8.0.5",
"eslint": "^5.5.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.0.0-rc.13",
"npm-run-all": "^4.1.3",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"rollup": "^1.7.4",
"rollup-plugin-babel": "^4.0.2",
"svg-inline-loader": "^0.8.0"
},
"files": [
"lib/"
]
}