forked from publitas/react-svg-icons
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1010 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1010 Bytes
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
{
"name": "react-svgcon",
"version": "0.8.0",
"description": "React component for using SVGs as icons",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/slightlytyler/react-svgcon"
},
"authors": [
"Tyler Martinez"
],
"scripts": {
"test": "node_modules/tap/bin/run.js test/*.js",
"build": "webpack",
"dev": "webpack --watch",
"prepublish": "npm run build"
},
"jest": {
"unmockedModulePathPatterns": [
"react"
]
},
"license": "MIT",
"keywords": [
"react",
"react-component",
"icon",
"icons",
"svg"
],
"devDependencies": {
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.5.0",
"proxyquire": "^1.5.0",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.0",
"react-dom": "^0.14.7",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
}
}