svg list build

This commit is contained in:
Clément GOUIN
2019-07-10 11:03:26 +02:00
parent 998fe832ea
commit 682e84914c
7 changed files with 1010 additions and 226 deletions
+15 -7
View File
@@ -2,9 +2,14 @@
"name": "fa-diagrams",
"version": "1.0.0",
"description": "SVG diagrams built from Font-Awesome icons",
"main": "index.js",
"main": "src/index.js",
"files": [
"/src",
"/svg_list.json"
],
"scripts": {
"test": "jest --silent"
"test": "jest --silent",
"prepublishOnly": "node build.js --output svg_list.json"
},
"repository": {
"type": "git",
@@ -21,15 +26,18 @@
"url": "https://github.com/Klemek/fa-diagrams/issues"
},
"homepage": "https://github.com/Klemek/fa-diagrams#readme",
"dependencies": {
"coveralls": "^3.0.4",
"jest": "^24.8.0",
"jshint": "^2.10.2"
},
"dependencies": {},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!/node_modules/"
]
},
"devDependencies": {
"coveralls": "^3.0.4",
"jest": "^24.8.0",
"jshint": "^2.10.2",
"node-svn-ultimate": "^1.2.0",
"rimraf": "^2.6.3"
}
}