When using versions and letting npm install dedupe the packages, npm audit does not work and it exits with a cryptic error: The server said: Invalid package tree, run npm install to rebuild your package-lock.json
19 lines
398 B
JSON
19 lines
398 B
JSON
{
|
|
"name": "@rondo.dev/config",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"test": "jest",
|
|
"lint": "tslint --project .",
|
|
"compile": "tsc",
|
|
"clean": "rm -rf lib/"
|
|
},
|
|
"dependencies": {
|
|
"@rondo.dev/logger": "file:../logger",
|
|
"js-yaml": "^3.13.1"
|
|
},
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"module": "esm/index.js",
|
|
"devDependencies": {}
|
|
} |