2020-08-19 20:27:35 +02:00
|
|
|
{
|
|
|
|
"name": "@verdaccio/file-locking",
|
2021-01-10 19:32:01 +01:00
|
|
|
"version": "10.0.0-alpha.3",
|
2020-08-19 20:27:35 +02:00
|
|
|
"description": "library that handle file locking",
|
|
|
|
"keywords": [
|
|
|
|
"verdaccio",
|
|
|
|
"lock",
|
|
|
|
"fs"
|
|
|
|
],
|
|
|
|
"author": "Juan Picado <juanpicado19@gmail.com>",
|
|
|
|
"license": "MIT",
|
|
|
|
"homepage": "https://verdaccio.org",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-09-27 08:34:33 +02:00
|
|
|
"url": "https://github.com/verdaccio/verdaccio",
|
|
|
|
"directory": "packages/core/file-locking"
|
2020-08-19 20:27:35 +02:00
|
|
|
},
|
|
|
|
"bugs": {
|
2020-09-27 08:34:33 +02:00
|
|
|
"url": "https://github.com/verdaccio/verdaccio/issues"
|
2020-08-19 20:27:35 +02:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"main": "build/index.js",
|
|
|
|
"types": "build/index.d.ts",
|
|
|
|
"files": [
|
|
|
|
"build"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
|
|
|
"lockfile": "1.0.4"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-01-10 19:32:01 +01:00
|
|
|
"@verdaccio/types": "workspace:10.0.0-alpha.3"
|
2020-08-19 20:27:35 +02:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"clean": "rimraf ./build",
|
|
|
|
"test": "cross-env NODE_ENV=test BABEL_ENV=test jest",
|
2020-09-07 07:07:05 +02:00
|
|
|
"build:types": "tsc --emitDeclarationOnly -p tsconfig.build.json",
|
2020-08-19 20:27:35 +02:00
|
|
|
"build:js": "babel src/ --out-dir build/ --copy-files --extensions \".ts,.tsx\" --source-maps",
|
2020-12-22 21:16:11 +01:00
|
|
|
"watch": "pnpm build:js -- --watch",
|
2020-08-19 20:27:35 +02:00
|
|
|
"build": "pnpm run build:js && pnpm run build:types"
|
|
|
|
},
|
|
|
|
"funding": {
|
|
|
|
"type": "opencollective",
|
|
|
|
"url": "https://opencollective.com/verdaccio"
|
|
|
|
}
|
|
|
|
}
|