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

53 lines
1.5 KiB
JSON
Raw Normal View History

2021-05-02 17:42:04 -04:00
{
2021-05-06 23:05:36 -04:00
"name": "vogue",
2021-05-10 16:55:19 -04:00
"version": "0.0.1",
2021-05-02 17:42:04 -04:00
"main": "index.js",
"license": "MIT",
"type": "module",
"bin": {
2021-05-20 20:34:50 -04:00
"vogue": "out/run.js"
2021-05-02 17:42:04 -04:00
},
"scripts": {
2021-05-23 17:58:38 -04:00
"dev": "multiview [ yarn test:watch ] [ yarn compile:watch ]",
2021-05-23 17:38:54 -04:00
"test": "c8 --all mocha",
2021-05-23 18:02:38 -04:00
"test:watch": "supervisor -w src,test,.mocharc.json -n exit --extensions js,ts,node --exec yarn.cmd -- test",
2021-05-22 18:13:26 -04:00
"debug": "cross-env DEBUG=vogue:* yarn node --enable-source-maps --unhandled-rejections=strict out/run.js test",
2021-05-23 17:38:54 -04:00
"debug:watch": "supervisor -w out,test/system/**/*.v,lib -n exit --exec yarn -- clear_and yarn debug",
2021-05-23 18:02:38 -04:00
"compile": "tsc",
2021-05-23 17:58:38 -04:00
"compile:watch": "yarn compile --watch --preserveWatchOutput",
2021-05-23 17:38:54 -04:00
"postinstall": "yarn compile"
2021-05-02 17:42:04 -04:00
},
"dependencies": {
2021-05-23 17:38:54 -04:00
"@types/chai": "^4.2.18",
2021-05-20 00:19:25 -04:00
"@types/debug": "^4.1.5",
2021-05-21 23:31:35 -04:00
"@types/fs-extra": "^9.0.11",
2021-05-23 17:38:54 -04:00
"@types/jest": "^26.0.23",
2021-05-20 00:19:25 -04:00
"@types/lodash": "^4.14.169",
"@types/nearley": "^2.11.1",
"@types/node": "^15.3.0",
2021-05-23 17:38:54 -04:00
"@types/sinon": "^10.0.0",
2021-05-20 00:19:25 -04:00
"@types/uglify-js": "^3.13.0",
2021-05-21 23:31:35 -04:00
"@types/uuid": "^8.3.0",
2021-05-23 17:38:54 -04:00
"c8": "^7.7.2",
2021-05-22 18:13:26 -04:00
"chai": "^4.3.4",
2021-05-23 17:39:02 -04:00
"concurrently": "^6.1.0",
"cross-env": "^7.0.3",
2021-05-10 16:55:19 -04:00
"debug": "^4.3.1",
2021-05-23 17:38:54 -04:00
"esm": "^3.2.25",
2021-05-21 23:31:35 -04:00
"fs-extra": "^10.0.0",
2021-05-06 09:33:28 -04:00
"lodash": "^4.17.21",
2021-05-22 18:13:26 -04:00
"mocha": "^8.4.0",
2021-05-23 17:38:54 -04:00
"mocha-lcov-reporter": "^1.3.0",
2021-05-02 17:42:04 -04:00
"moo": "^0.5.1",
2021-05-23 17:39:02 -04:00
"multiview": "^3.0.1",
2021-05-02 17:42:04 -04:00
"nearley": "^2.20.1",
2021-05-23 17:38:54 -04:00
"sinon": "^10.0.0",
2021-05-20 20:34:50 -04:00
"supervisor": "^0.12.0",
2021-05-23 17:38:54 -04:00
"ts-node": "^9.1.1",
2021-05-20 00:19:25 -04:00
"typescript": "^4.2.4",
"uglify-js": "^3.13.5",
2021-05-21 23:31:35 -04:00
"uuid": "^8.3.2",
"yarn": "^1.22.10"
2021-05-02 17:42:04 -04:00
}
}