Bringing points stuff up to spec

This commit is contained in:
Bán Dénes 2020-06-26 21:00:10 +02:00
parent 0ab5a246e5
commit a5e686b059
11 changed files with 474 additions and 108 deletions

View file

@ -11,7 +11,7 @@
"bin": "./src/cli.js",
"scripts": {
"build": "rollup -c",
"test": "nyc mocha -r chai/register-should"
"test": "nyc --reporter=html --reporter=text mocha -r chai/register-should"
},
"dependencies": {
"fs-extra": "^9.0.1",
@ -28,7 +28,11 @@
},
"nyc": {
"all": true,
"include": ["src/*.js"],
"exclude": ["src/cli.js"]
"include": [
"src/*.js"
],
"exclude": [
"src/cli.js"
]
}
}