TypeScript: step 9
[jackhill/mal.git] / ts / package.json
1 {
2 "name": "mal",
3 "private": true,
4 "version": "1.0.0",
5 "description": "Make a Lisp (mal) language implemented in TypeScript",
6 "scripts": {
7 "build": "tsfmt -r && tsc -p ./",
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 && npm run test:step6 && npm run test:step7 && npm run test:step8 && npm run test:step9",
9 "test:step0": "cd .. && make 'test^ts^step0'",
10 "test:step1": "cd .. && make 'test^ts^step1'",
11 "test:step2": "cd .. && make 'test^ts^step2'",
12 "test:step3": "cd .. && make 'test^ts^step3'",
13 "test:step4": "cd .. && make 'test^ts^step4'",
14 "test:step5": "cd .. && make 'test^ts^step5'",
15 "test:step6": "cd .. && make 'test^ts^step6'",
16 "test:step7": "cd .. && make 'test^ts^step7'",
17 "test:step8": "cd .. && make 'test^ts^step8'",
18 "test:step9": "cd .. && make 'test^ts^step9'"
19 },
20 "dependencies": {
21 "ffi": "^2.2.0"
22 },
23 "devDependencies": {
24 "@types/ffi": "0.0.19",
25 "@types/node": "^7.0.5",
26 "typescript": "^2.2.1",
27 "typescript-formatter": "^4.1.2"
28 }
29 }