-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 730 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "lisp",
"version": "1.0.0",
"main": "build/compiler.js",
"author": "Konstantin Pschera <me@kons.ch>",
"license": "MIT",
"dependencies": {
"@types/chalk": "0.4.31",
"@types/minimist": "1.2.0",
"@types/node": "8.0.28",
"chalk": "2.1.0",
"minimist": "1.2.0",
"nodemon": "1.12.0",
"pkg": "4.2.4",
"ts-node": "3.3.0",
"typescript": "2.5.2"
},
"scripts": {
"start": "ts-node src/compiler.ts",
"dev": "nodemon --exec \"ts-node\" src/compiler.ts",
"compile": "tsc",
"pkg": "pkg build/compiler.js --out-path bin --targets node8-macos-x64,node8-macos-x86,node8-linux-x64,node8-linux-x86,node8-win-x64,node8-win-x86",
"build": "rm -rf bin && rm -rf build && npm run compile && npm run pkg"
}
}