64 lines
1.6 KiB
JSON
Executable file
64 lines
1.6 KiB
JSON
Executable file
{
|
|
"name": "serialize-to-js",
|
|
"version": "1.2.2",
|
|
"description": "serialize objects to javascript",
|
|
"keywords": [
|
|
"javascript",
|
|
"objects",
|
|
"serialize"
|
|
],
|
|
"homepage": "https://github.com/commenthol/serialize-to-js",
|
|
"bugs": {
|
|
"url": "https://github.com/commenthol/serialize-to-js/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/commenthol/serialize-to-js.git"
|
|
},
|
|
"license": "MIT",
|
|
"author": "commenthol <commenthol@gmail.com>",
|
|
"main": "lib",
|
|
"directories": {
|
|
"doc": "doc",
|
|
"test": "test"
|
|
},
|
|
"scripts": {
|
|
"all": "npm run lint && npm test",
|
|
"clean": "rimraf doc coverage .nyc_output node_modules *.tgz",
|
|
"coverage": "nyc -r text -r html npm test",
|
|
"doc": "jsdox -o doc lib/*.js",
|
|
"lint": "eslint '**/*.js'",
|
|
"prepublishOnly": "npm run all",
|
|
"readme": "markedpp --githubid -i README.md -o README.md",
|
|
"test": "mocha"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "standard",
|
|
"plugins": [
|
|
"standard"
|
|
],
|
|
"rules": {
|
|
"key-spacing": 0
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"js-beautify": "^1.8.9",
|
|
"safer-eval": "^1.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^5.11.1",
|
|
"eslint-config-standard": "^12.0.0",
|
|
"eslint-plugin-import": "^2.14.0",
|
|
"eslint-plugin-node": "^8.0.0",
|
|
"eslint-plugin-promise": "^4.0.1",
|
|
"eslint-plugin-standard": "^4.0.0",
|
|
"jsdox": "^0.4.10",
|
|
"mocha": "^5.2.0",
|
|
"nyc": "^13.1.0",
|
|
"rimraf": "^2.6.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=4.0.0"
|
|
},
|
|
"maintainers": "commenthol <commenthol@gmail.com>"
|
|
}
|