1
1
mirror of https://github.com/kanaka/mal.git synced 2024-11-10 12:47:45 +03:00
mal/ts/package.json
2017-02-24 16:30:25 +09:00

26 lines
853 B
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",
"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'"
},
"dependencies": {
"ffi": "^2.2.0"
},
"devDependencies": {
"@types/ffi": "0.0.19",
"@types/node": "^7.0.5",
"typescript": "^2.2.1",
"typescript-formatter": "^4.1.2"
}
}