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

26 lines
853 B
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 10:30:25 +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",
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'",
"test:step5": "cd .. && make 'test^ts^step5'"
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
}
}