shelveit
Version:
state persistence in json, yaml, toml, or ini files, optionally encrypted
87 lines (86 loc) • 2.32 kB
JSON
{
"scripts": {
"rollup": "rollup --config",
"babel": "babel src/ -o dist/bundle.js",
"commit": "git-cz",
"coverage": "flow coverage",
"flow": "flow check",
"lint": "eslint . && stylelint *.css",
"start": "node index.js",
"test:e2e": "# fill this in",
"test:unit": "# fill this in",
"test": "npm run lint && npm run test:unit && npm run test:e2e"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-testcafe": "^0.2.1",
"eslint-plugin-vue": "^4.4.0",
"flow-bin": "^0.68.0",
"husky": "^1.0.0-rc.1",
"jest": "^22.4.3",
"prettier-eslint": "^8.8.1",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"semantic-release": "^15.1.5",
"stylelint": "^9.2.0",
"stylelint-config-standard": "^18.2.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run flow && npm run test:unit"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"name": "shelveit",
"version": "0.0.1",
"description":
"state persistence in json, yaml, toml, or ini files, optionally encrypted",
"main": "dist/bundle.js",
"dependencies": {
"globby": "^8.0.1",
"ini": "^1.3.5",
"js-yaml": "^3.11.0",
"lodash": "^4.17.10",
"toml-j0.4": "^1.1.1",
"tomlify-j0.4": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/alexgagnon/shelveit.git"
},
"keywords": [
"shelve",
"state",
"store",
"persistence",
"yaml",
"toml",
"json",
"ini"
],
"author": "alexgagnon",
"license": "ISC",
"bugs": {
"url": "https://github.com/alexgagnon/shelveit/issues"
},
"homepage": "https://github.com/alexgagnon/shelveit#readme"
}