fix npm script

This commit is contained in:
Rik Berkelder 2021-01-23 16:36:00 +01:00
parent c31afdb3ce
commit c97185caf9
2 changed files with 462 additions and 12 deletions

View file

@ -6,12 +6,12 @@
"types": "./lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "tsc",
"watch": "tsc --watch",
"docs": "typedoc --out docs ./src/index.ts",
"nojekyll": "touch ./docs/.nojekyll",
"clean": "rimraf lib",
"build": "run-s clean compile docs nojekyll"
"compile": "tsc",
"watch": "tsc --watch",
"docs": "typedoc --out docs ./src/index.ts",
"nojekyll": "touch ./docs/.nojekyll",
"clean": "rimraf lib",
"build": "run-s clean compile docs nojekyll"
},
"repository": {
"type": "git",
@ -29,9 +29,10 @@
"osc-min": "^1.1.2"
},
"devDependencies": {
"rimraf": "^3.0.2",
"typedoc": "^0.20.16",
"@types/node": "^14.14.22",
"typescript": "^4.1.3"
"@types/node": "^14.14.22",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typedoc": "^0.20.16",
"typescript": "^4.1.3"
}
}