Jerko Steiner 23f2796d68 Use relative paths in packages/*/package.json
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
2020-01-09 18:26:00 +01:00

18 lines
378 B
JSON

{
"name": "@rondo.dev/tasq",
"version": "0.0.1",
"private": true,
"scripts": {
"test": "jest",
"lint": "tslint --project .",
"compile": "tsc",
"clean": "rm -rf lib/"
},
"dependencies": {},
"types": "lib/index.d.ts",
"devDependencies": {
"@rondo.dev/test-utils": "file:../test-utils"
},
"module": "esm/index.js",
"main": "lib/index.js"
}