mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
9cf5cee4fd
* docs: copy docker examples v4 * docs: copy docker examples v4 * chore: update ignore files
72 lines
1.9 KiB
JSON
72 lines
1.9 KiB
JSON
{
|
|
"name": "verdaccio-memory",
|
|
"version": "1.0.3",
|
|
"description": "storage implementation in memory",
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"release": "standard-version -a -s",
|
|
"pretest": "npm run lint",
|
|
"test": "jest",
|
|
"precommit": "lint-staged",
|
|
"format": "prettier --single-quote --trailing-comma none --write \"{src,test}/**/*.js\"",
|
|
"lint": "npm run flow && eslint .",
|
|
"flow": "flow",
|
|
"prepublish": "npm run build",
|
|
"commitmsg": "commitlint -e $GIT_PARAMS",
|
|
"build": "babel src/ --out-dir lib/ --copy-files --ignore ___tests___"
|
|
},
|
|
"dependencies": {
|
|
"@verdaccio/streams": "^1.0.0",
|
|
"http-errors": "1.6.3",
|
|
"memory-fs": "^0.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "7.0.0",
|
|
"@commitlint/config-conventional": "7.0.1",
|
|
"@commitlint/travis-cli": "7.0.0",
|
|
"@verdaccio/types": "3.3.0",
|
|
"babel-cli": "6.26.0",
|
|
"babel-core": "6.26.3",
|
|
"babel-eslint": "8.2.6",
|
|
"babel-jest": "23.4.0",
|
|
"babel-plugin-flow-runtime": "0.17.0",
|
|
"babel-plugin-transform-async-to-generator": "6.24.1",
|
|
"babel-preset-env": "1.7.0",
|
|
"babel-preset-flow": "6.23.0",
|
|
"cross-env": "5.2.0",
|
|
"eslint": "5.1.0",
|
|
"eslint-config-google": "0.9.1",
|
|
"eslint-config-prettier": "2.9.0",
|
|
"eslint-plugin-flowtype": "2.50.0",
|
|
"eslint-plugin-jest": "21.17.0",
|
|
"eslint-plugin-prettier": "2.6.2",
|
|
"flow-bin": "0.76.0",
|
|
"flow-runtime": "0.17.0",
|
|
"husky": "0.14.3",
|
|
"jest": "23.4.1",
|
|
"lint-staged": "7.2.0",
|
|
"prettier": "1.13.7",
|
|
"rmdir-sync": "1.0.1",
|
|
"standard-version": "4.3.0"
|
|
},
|
|
"keywords": [
|
|
"verdaccio",
|
|
"plugin",
|
|
"storage"
|
|
],
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
]
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"npm run format",
|
|
"npm run lint",
|
|
"git add"
|
|
]
|
|
},
|
|
"author": "Juan Picado <juanpicado19@gmail.com>",
|
|
"private": false,
|
|
"license": "MIT"
|
|
}
|