TypeScript: step 4
[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",
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 },
15 "dependencies": {
16 "ffi": "^2.2.0"
17 },
18 "devDependencies": {
19 "@types/ffi": "0.0.19",
20 "@types/node": "^7.0.5",
21 "typescript": "^2.2.1",
22 "typescript-formatter": "^4.1.2"
23 }
24 }