-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
57 lines (57 loc) · 1.85 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
{
"name" : "svg-reactify",
"description" : "transform SVG files into React elements",
"homepage" : "https://github.com/coma/svg-reactify",
"repository" : {
"type": "git",
"url" : "git://github.com/coma/svg-reactify.git"
},
"version" : "2.0.0",
"main" : "lib",
"license" : "MIT",
"private" : false,
"author" : "Eduardo García Sanz <[email protected]>",
"contributors" : [
"Matthew Brandly <[email protected]>",
"Anders Stalheim Øfsdahl <https://github.com/andersaloof>"
],
"keywords" : [
"browserify",
"react",
"reactjs",
"svg",
"browserify-transform"
],
"dependencies" : {
"babel-core" : "^6.10.4",
"babel-preset-react" : "^6.11.1",
"lodash.camelcase" : "^4.1.1",
"lodash.kebabcase" : "^4.0.1",
"svgo" : "^0.6.6",
"through2" : "^2.0.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"devDependencies" : {
"babel-cli" : "^6.10.1",
"babel-eslint" : "^6.1.0",
"babel-preset-es2015" : "^6.9.0",
"enzyme" : "^2.3.0",
"eslint" : "^2.13.1",
"react" : "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"react-dom" : "^15.1.0",
"tape" : "^4.6.0"
},
"scripts" : {
"clean" : "rm -rf ./lib",
"lint" : "eslint src",
"build" : "npm run clean && babel src --out-dir lib",
"test" : "npm run lint && babel-node test",
"prepublish": "npm test && npm run build"
},
"engines" : {
"node": ">= 4.0.0"
}
}