TypeScript: step 5
[jackhill/mal.git] / ts / package.json
CommitLineData
571eb786 1{
2 "name": "mal",
3 "private": true,
4 "version": "1.0.0",
5 "description": "Make a Lisp (mal) language implemented in TypeScript",
6 "scripts": {
ef918f11 7 "build": "tsfmt -r && tsc -p ./",
79a10a6e 8 "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",
f406f88b 9 "test:step0": "cd .. && make 'test^ts^step0'",
83aaf848 10 "test:step1": "cd .. && make 'test^ts^step1'",
86fa8806 11 "test:step2": "cd .. && make 'test^ts^step2'",
dfe70453 12 "test:step3": "cd .. && make 'test^ts^step3'",
79a10a6e 13 "test:step4": "cd .. && make 'test^ts^step4'",
14 "test:step5": "cd .. && make 'test^ts^step5'"
571eb786 15 },
16 "dependencies": {
17 "ffi": "^2.2.0"
18 },
19 "devDependencies": {
20 "@types/ffi": "0.0.19",
21 "@types/node": "^7.0.5",
76e06b96 22 "typescript": "^2.2.1",
23 "typescript-formatter": "^4.1.2"
571eb786 24 }
25}