forked from boopathi/react-svg-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.69 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
{
"name": "react-svg-loader",
"version": "2.0.0-alpha.1",
"description": "Optimize svg and load it as a React Component",
"main": "lib/loader.js",
"scripts": {
"build": "babel src --out-dir lib --copy-files",
"clean": "rm -rf lib",
"lint": "eslint src/ test/ example/*.js --ignore-pattern '*.react.js'",
"test": "tape -r babel-register test/index.js | faucet",
"cover": "babel-node `npm bin`/isparta cover test/index.js",
"watch": "babel src --out-dir lib --copy-files --watch",
"preversion": "npm run clean && npm run lint && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boopathi/react-svg-loader.git"
},
"keywords": [
"react-svg-loader",
"webpack-loader",
"loader",
"webpack",
"react"
],
"bin": {
"svg2react": "./lib/cli.js"
},
"author": "boopathi",
"license": "MIT",
"bugs": {
"url": "https://github.com/boopathi/react-svg-loader/issues"
},
"homepage": "https://github.com/boopathi/react-svg-loader#readme",
"dependencies": {
"babel-core": "^6.22.1",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-preset-react": "^6.22.0",
"js-yaml": "^3.7.0",
"loader-utils": "^1.0.2",
"lodash.isplainobject": "^4.0.4",
"react-dom": "^15.4.2",
"svgo": "^0.7.2",
"yargs": "^7.0.2"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.22.0",
"eslint": "^4.1.0",
"eslint-plugin-react": "^7.0.1",
"faucet": "0.0.1",
"isparta": "^4.0.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"tape": "^4.6.3"
}
}