uci-utils-to-boolean/package.json

33 lines
938 B
JSON
Raw Normal View History

2020-01-01 21:09:01 -08:00
{
"name": "@uci-utils/to-boolean",
2021-04-23 17:57:40 -07:00
"version": "0.2.0",
2020-01-01 21:09:01 -08:00
"description": "function to return a boolean value from sets of default values",
"main": "src/boolean.js",
2021-04-23 17:57:40 -07:00
"type": "module",
2020-01-01 21:09:01 -08:00
"scripts": {
2021-04-23 17:57:40 -07:00
"example": "node examples/example",
"example:dev": "UCI_ENV=dev ./node_modules/.bin/nodemon examples/example",
"test": "./node_modules/.bin/mocha --timeout 30000 || exit 0",
"testd": "./node_modules/.bin/nodemon --exec './node_modules/.bin/mocha --timeout 30000' || exit 0"
2020-01-01 21:09:01 -08:00
},
"author": "David Kebler",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/uCOMmandIt/.git"
},
"keywords": [
"node.js"
],
"bugs": {
"url": "https://github.com/uCOMmandIt/uci-utils/issues"
},
"homepage": "https://github.com/uCOMmandIt/uci-utils#readme",
"dependencies": {},
"devDependencies": {
2021-04-23 17:57:40 -07:00
"chai": "^4.3.4",
"mocha": "^8.3.2",
"nodemon": "^2.0.7"
2020-01-01 21:09:01 -08:00
}
}