-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.81 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
{
"name": "react-inline-svg-icon",
"version": "0.1.2",
"description": "React component to render inline svg icons",
"main": "build/index.js",
"scripts": {
"test": "jest",
"build": "babel lib -d build",
"build:watch": "babel lib -w -d build",
"lint": "eslint lib/**; exit 0",
"lint:watch": "esw -w lib/**",
"prepare": "npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"demo": "build-storybook -c .storybook -o .demo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pauldariye/react-inline-svg-icon.git"
},
"keywords": [
"react-component",
"svg",
"inline-svg",
"react-icon"
],
"author": "Paul Dariye <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/pauldariye/react-inline-svg-icon/issues"
},
"homepage": "https://github.com/pauldariye/react-inline-svg-icon#readme",
"devDependencies": {
"@storybook/addon-info": "^3.2.0",
"@storybook/addon-knobs": "^3.2.0",
"@storybook/addon-options": "^3.2.3",
"@storybook/react": "^3.2.3",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^2.9.1",
"eslint": "^4.4.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.2.0",
"eslint-watch": "^3.1.2",
"jest": "^20.0.4",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"regenerator-runtime": "^0.10.5"
},
"jest": {
"verbose": true,
"collectCoverageFrom": [
"./lib/**/*.{js,jsx}",
"!**/node_modules/**",
"!**stories/**"
]
}
}