49 lines
1.5 KiB
JSON
49 lines
1.5 KiB
JSON
{
|
|
"name": "node-localstorage",
|
|
"version": "2.2.1",
|
|
"main": "./LocalStorage",
|
|
"description": "A drop-in substitute for the browser native localStorage API that runs on node.js.",
|
|
"keywords": [
|
|
"localStorage",
|
|
"Web Storage",
|
|
"node.js"
|
|
],
|
|
"author": {
|
|
"name": "Larry Maccherone",
|
|
"url": "http://maccherone.com"
|
|
},
|
|
"homepage": "https://github.com/lmaccherone/node-localstorage",
|
|
"engines": {
|
|
"node": ">=0.12"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "http://github.com/lmaccherone/node-localstorage.git"
|
|
},
|
|
"preferGlobal": false,
|
|
"devDependencies": {
|
|
"coffeescript": "^1.12.7",
|
|
"coffeetape": "^2.0.0",
|
|
"lodash": "^4.17.15",
|
|
"nyc": "^14.1.1",
|
|
"tap-nyc": "^1.0.3",
|
|
"tap-spec": "^5.0.0"
|
|
},
|
|
"scripts": {
|
|
"test": "npm run build && coffeetape test/*.coffee | tap-spec",
|
|
"coverage": "npm run build && nyc --reporter=lcov coffeetape test/*.coffee | tap-nyc",
|
|
"coverage:summary": "nyc report --reporter=text-summary",
|
|
"coverage:report": "python3 -m http.server 3000 -d coverage/lcov-report",
|
|
"publish:patch": "npm run test && npm version patch && npm publish",
|
|
"publish:minor": "npm run test && npm version minor && npm publish",
|
|
"publish:major": "npm run test && npm version major && npm publish",
|
|
"postpublish": "git push --tags",
|
|
"build": "coffee -c LocalStorage.coffee",
|
|
"prepublishOnly": "coffee -c LocalStorage.coffee"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"write-file-atomic": "^1.1.4"
|
|
}
|
|
}
|