46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"name": "@uci-utils/history",
|
|
"version": "0.1.0",
|
|
"description": "Maintain a history file of events in nljson",
|
|
"main": "./src/history.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"testd": "./node_modules/.bin/nodemon --exec './node_modules/.bin/mocha --timeout 30000' || exit 1",
|
|
"test": "./node_modules/.bin/mocha --timeout 30000 || exit 0",
|
|
"dev:write": "UCI_ENV=dev ./node_modules/.bin/nodemon example/write",
|
|
"dev:read": "UCI_ENV=dev ./node_modules/.bin/nodemon example/read",
|
|
"read": "node example/read",
|
|
"pro": "UCI_ENV='pro' node example/example",
|
|
"pro:path": "UCI_LOG_PATH=./example/example.log npm run pro"
|
|
},
|
|
"author": "David Kebler",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/uCOMmandIt/uci-changeme.git"
|
|
},
|
|
"keywords": [
|
|
"nodejs",
|
|
"history",
|
|
"json",
|
|
"log"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/uCOMmandIt/uci-changeme/issues"
|
|
},
|
|
"homepage": "https://github.com/uCOMmandIt/uci-changeme#readme",
|
|
"dependencies": {
|
|
"debounce-fn": "^5.0.0",
|
|
"env-paths": "^2.2.1",
|
|
"make-dir": "^3.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.3.4",
|
|
"eslint": "^7.28.0",
|
|
"eslint-config-standard": "^16.0.3",
|
|
"mocha": "^9.0.0",
|
|
"nedb-promises": "^4.1.5",
|
|
"nodemon": "^2.0.7"
|
|
}
|
|
}
|