This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
vogue/package.json

62 lines
1.9 KiB
JSON

{
"name": "vogue-runtime",
"version": "0.1.0",
"main": "index.js",
"license": "MIT",
"type": "module",
"bin": {
"vogue": "out/run.js"
},
"repository": {
"url": "https://github.com/marcus13345/vogue"
},
"scripts": {
"dev": "multiview [ yarn test:watch ] [ yarn compile:watch ] [ yarn debug:watch ]",
"test": "c8 --include src/**/*.ts --reporter lcov --reporter text mocha",
"test:watch": "cross-env FORCE_COLOR=true supervisor -t -w src,test,.mocharc.json -n exit --extensions js,ts,node --exec cross-env -- yarn test",
"debug": "cross-env DEBUG=vogue:* FORCE_COLOR=true DEBUG_COLORS=true DEBUG_HIDE_DATE=true node --enable-source-maps out/run.js examples/test",
"debug:watch": "supervisor -t -w out,test/system/**/*.v,lib -n exit --exec yarn -- debug",
"compile": "tsc",
"compile:watch": "yarn compile --watch --preserveWatchOutput",
"postinstall": "yarn compile && cd examples/test && yarn"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.4",
"@types/debug": "^4.1.5",
"@types/fs-extra": "^9.0.11",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.169",
"@types/nearley": "^2.11.1",
"@types/node": "^15.3.0",
"@types/sinon": "^10.0.0",
"@types/uglify-js": "^3.13.0",
"@types/uuid": "^8.3.0",
"c8": "^7.7.2",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"mocha": "^8.4.0",
"mocha-lcov-reporter": "^1.3.0",
"multiview": "^3.0.1",
"sinon": "^10.0.0",
"supervisor": "^0.12.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"yarn": "^1.22.10"
},
"dependencies": {
"@types/rimraf": "^3.0.0",
"@types/tmp": "^0.2.0",
"debug": "^4.3.1",
"fs-extra": "^10.0.0",
"lodash": "^4.17.21",
"moo": "^0.5.1",
"nearley": "^2.20.1",
"rimraf": "^3.0.2",
"tmp": "^0.2.1",
"uglify-js": "^3.13.5",
"uuid": "^8.3.2"
}
}