Install mocha

master
Anton Smirnov 2021-08-29 16:17:20 +03:00
parent 5321839814
commit 55529768fd
4 changed files with 32 additions and 4 deletions

9
.gitignore vendored
View File

@ -1,5 +1,10 @@
# idea
/.idea
/node_modules
/package-lock.json
# npm. ignore names everywhere
node_modules
package-lock.json
# project specific
/demo.*
/docs/index.html

7
.mocharc.js Normal file
View File

@ -0,0 +1,7 @@
'use strict';
module.exports = {
spec: [
"tests/spec/**/*.js"
],
}

10
.npmignore Normal file
View File

@ -0,0 +1,10 @@
# gitignore
/.idea
/node_modules
/package-lock.json
/demo.*
# no needed in node package
/docs
/tests
/.mocharc.js

View File

@ -3,7 +3,11 @@
"version": "1.0.1",
"license": "MIT",
"description": "A simple helper to introduce HSV/HSB model support to SASS",
"keywords": ["sass", "hsv", "hsl"],
"keywords": [
"sass",
"hsv",
"hsl"
],
"repository": {
"type": "git",
"url": "https://gitlab.com/sandfox/sass-hsv"
@ -16,6 +20,8 @@
},
"sass": "_hsv.scss",
"devDependencies": {
"sass": "^1.38.1"
"mocha": "^9.1.1",
"node-sass": "*",
"sass": "*"
}
}