-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "react-svg-icon-generator",
"version": "0.5.2",
"description": "Generate React Icon Component from SVG icons to show, resize and recolor them.",
"main": "lib/index.js",
"bin": {
"svg-icon-generate": "bin/svg-icon-generate.js"
},
"scripts": {
"clean": "rimraf lib dist",
"build": "babel src --out-dir lib",
"lint": "eslint src test examples",
"test": "NODE_ENV=test mocha",
"test:watch": "NODE_ENV=test mocha --watch",
"test:cov": "babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/blueberryapps/react-svg-icon-generator.git"
},
"keywords": [
"react",
"react-native",
"svg",
"icon"
],
"author": "Blueberry, Ondrej Bartas",
"license": "MIT",
"bugs": {
"url": "https://github.com/blueberryapps/react-svg-icon-generator/issues"
},
"homepage": "https://github.com/blueberryapps/react-svg-icon-generator",
"devDependencies": {
"babel": "^5.5.8",
"babel-core": "^5.6.18",
"babel-eslint": "^3.1.15",
"babel-loader": "^5.1.4",
"escope": "^3.3.0",
"eslint": "^0.23",
"eslint-config-airbnb": "0.0.6",
"eslint-plugin-react": "^2.3.0",
"expect": "^1.6.0",
"gulp": ">=3",
"mocha": "^5.0.5",
"rimraf": "^2.3.4"
},
"dependencies": {
"bluebird": "^3.3.4",
"invariant": "^2.0.0",
"nunjucks": "^2.4.0",
"svgo": "^0.6.2",
"yargs": "^6.6.0"
}
}