1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 10:07:45 +03:00
mal/ts/package.json

31 lines
1.2 KiB
JSON
Raw Normal View History

2017-02-22 18:03:21 +03:00
{
"name": "mal",
"private": true,
"version": "1.0.0",
"description": "Make a Lisp (mal) language implemented in TypeScript",
"scripts": {
2017-02-22 21:04:46 +03:00
"build": "tsfmt -r && tsc -p ./",
2017-02-24 22:31:15 +03:00
"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",
2017-02-22 21:05:01 +03:00
"test:step0": "cd .. && make 'test^ts^step0'",
2017-02-22 23:18:41 +03:00
"test:step1": "cd .. && make 'test^ts^step1'",
2017-02-24 02:37:25 +03:00
"test:step2": "cd .. && make 'test^ts^step2'",
2017-02-24 07:21:11 +03:00
"test:step3": "cd .. && make 'test^ts^step3'",
2017-02-24 10:30:25 +03:00
"test:step4": "cd .. && make 'test^ts^step4'",
2017-02-24 12:28:26 +03:00
"test:step5": "cd .. && make 'test^ts^step5'",
2017-02-24 14:16:23 +03:00
"test:step6": "cd .. && make 'test^ts^step6'",
2017-02-24 14:57:23 +03:00
"test:step7": "cd .. && make 'test^ts^step7'",
2017-02-24 18:21:30 +03:00
"test:step8": "cd .. && make 'test^ts^step8'",
2017-02-24 22:31:15 +03:00
"test:step9": "cd .. && make 'test^ts^step9'",
"test:stepA": "cd .. && make 'test^ts^stepA'"
2017-02-22 18:03:21 +03:00
},
"dependencies": {
"ffi": "^2.2.0"
},
"devDependencies": {
"@types/ffi": "0.0.19",
"@types/node": "^7.0.5",
2017-02-24 01:41:49 +03:00
"typescript": "^2.2.1",
"typescript-formatter": "^4.1.2"
2017-02-22 18:03:21 +03:00
}
}