1
1
mirror of https://github.com/kanaka/mal.git synced 2024-10-26 22:28:26 +03:00
mal/impls/ts/package.json
Joel Martin 1279811bbe [ts] update to node-12, ts-4.3.5, ffi-napi-4.0.4
Current versions were breaking during package dep install.
2021-07-11 19:08:14 -05:00

31 lines
1.2 KiB
JSON

{
"name": "mal",
"private": true,
"version": "1.0.0",
"description": "Make a Lisp (mal) language implemented in TypeScript",
"scripts": {
"build": "tsfmt -r && tsc -p ./",
"test": "npm run build && npm run test:step0 && npm run test:step1 && npm run test:step2 && npm run test:step3 && npm run test:step4 && npm run test:step5 && npm run test:step6 && npm run test:step7 && npm run test:step8 && npm run test:step9 && npm run test:stepA",
"test:step0": "cd .. && make 'test^ts^step0'",
"test:step1": "cd .. && make 'test^ts^step1'",
"test:step2": "cd .. && make 'test^ts^step2'",
"test:step3": "cd .. && make 'test^ts^step3'",
"test:step4": "cd .. && make 'test^ts^step4'",
"test:step5": "cd .. && make 'test^ts^step5'",
"test:step6": "cd .. && make 'test^ts^step6'",
"test:step7": "cd .. && make 'test^ts^step7'",
"test:step8": "cd .. && make 'test^ts^step8'",
"test:step9": "cd .. && make 'test^ts^step9'",
"test:stepA": "cd .. && make 'test^ts^stepA'"
},
"dependencies": {
"ffi-napi": "^2.4.0"
},
"devDependencies": {
"@types/ffi-napi": "4.0.4",
"@types/node": "^14.14.3",
"typescript": "^4.3.5",
"typescript-formatter": "^7.2.2"
}
}