mirror of
https://github.com/azure/login.git
synced 2026-06-06 19:47:08 +00:00
59 lines
1.4 KiB
JSON
59 lines
1.4 KiB
JSON
{
|
|
"name": "package-lock",
|
|
"version": "1.0.5",
|
|
"description": "(Re-)Build package-lock.json or npm-shrinkwrap.json file from node_modules folder",
|
|
"keywords": [
|
|
"json",
|
|
"lock",
|
|
"npm",
|
|
"package",
|
|
"regenerate",
|
|
"shrinkwrap"
|
|
],
|
|
"homepage": "https://github.com/commenthol/package-lock#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/commenthol/package-lock/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/commenthol/package-lock.git"
|
|
},
|
|
"license": "Unlicense",
|
|
"author": "commenthol <commenthol@gmail.com>",
|
|
"main": "src/index.js",
|
|
"bin": {
|
|
"package-lock": "./bin/package-lock.js"
|
|
},
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"scripts": {
|
|
"all": "npm run lint && npm test",
|
|
"lint": "eslint --fix '**/*.js'",
|
|
"prepublishOnly": "npm run all",
|
|
"test": "mocha"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"standard"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"asyncc": "^2.0.4",
|
|
"commander": "^6.1.0",
|
|
"glob": "^7.1.6",
|
|
"lodash.get": "^4.4.2",
|
|
"lodash.pick": "^4.4.0",
|
|
"traverse": "^0.6.6"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^7.11.0",
|
|
"eslint-config-standard": "^14.1.1",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"eslint-plugin-standard": "^4.0.1",
|
|
"mocha": "^8.2.0",
|
|
"shelljs": "^0.8.4"
|
|
}
|
|
}
|