TypeScript: step 1
[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 ./",
f406f88b 8 "test": "npm run build && npm run test:step0 && npm run test:step1",
9 "test:step0": "cd .. && make 'test^ts^step0'",
10 "test:step1": "cd .. && make 'test^ts^step1'"
571eb786 11 },
12 "dependencies": {
13 "ffi": "^2.2.0"
14 },
15 "devDependencies": {
16 "@types/ffi": "0.0.19",
17 "@types/node": "^7.0.5",
18 "typescript": "^2.1.6",
19 "typescript-formatter": "^4.1.1"
20 }
21}