-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.55 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
{
"name": "react-native-prepare-svg",
"version": "0.1.7",
"description": "Convert svg files to json, remove all unnecessary values.",
"main": "./lib/index",
"scripts": {
"test": "make test",
"build": "make build",
"bench": "make bench"
},
"repository": {
"type": "git",
"url": "https://github.com/jasancheg/react-native-prepare-svg"
},
"bugs": {
"url": "https://github.com/jasancheg/react-native-prepare-svg/issues"
},
"homepage": "https://github.com/jasancheg/react-native-prepare-svg#readme",
"keywords": [
"convert svg to json",
"svg to json",
"svg",
"json",
"prepare react native icons",
"react native json icons",
"react native svg to json",
"react native friendly svg to json"
],
"author": {
"name": "Jose Antonio Sanchez",
"email": "jasancheg@gmail.com"
},
"license": "MIT",
"dependencies": {
"chalk": "^2.3.0",
"commander": "^2.11.0",
"debug": "^3.1.0",
"fs-promise": "^2.0.3",
"htmlparser2": "^3.9.2",
"promise": "^8.0.1",
"svgo": "^1.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"mocha": "^4.0.1",
"pre-commit": "^1.2.2",
"should": "^13.1.3"
},
"bin": {
"rn-prepare-svg": "bin/rn-prepare-svg.js"
},
"pre-commit": [
"test",
"build"
]
}