-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "minicons",
"version": "1.0.4",
"description": "Aesthetic open-source svg icons",
"main": "dist/minicons.js",
"dependencies": {
"parse5": "^3.0.2",
"svgo": "^0.7.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"chai-fs": "^1.0.0",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"mocha": "^4.0.1",
"webpack": "^3.8.1"
},
"scripts": {
"parse": "./node_modules/.bin/babel-node bin/index",
"package": "npm run package:js && npm run package:prod",
"package:js": "webpack --config ./webpack.config.babel.js",
"package:prod": "webpack --config ./webpack.config.prod.babel.js",
"test": "mocha --compilers js:babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/animify/Minicons.git"
},
"files": [
"dist"
],
"keywords": [
"svg",
"icons",
"iconset",
"javascript"
],
"author": "Stefan Mansson <https://mansson.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/animify/Minicons/issues"
},
"homepage": "http://minicons.io"
}