-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 862 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 862 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
26
27
28
29
30
{
"name": "compiler-demo",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/diegoperini/compiler-demo.git"
},
"dependencies": {
"@types/node": "^10.12.0",
"coffeescript": "^2.3.2",
"colors": "^1.3.2",
"llvm-node": "^2.1.0",
"lodash": "^4.17.21",
"moo": "^0.4.3",
"nearley": "^2.15.1",
"ts-node": "^7.0.1",
"typescript": "^3.1.3"
},
"devDependencies": {
"coffeelint": "^2.1.0"
},
"scripts": {
"buildGrammar": "nearleyc src/grammar.ne -o src/grammar.js",
"build": "npm run buildGrammar",
"execute": "coffee src/index.coffee",
"buildAndExecute": "npm run build && npm run execute",
"buildAndExecuteExample": "npm run build && npm run execute example",
"fixLlvmPath": "npm config set cmake_LLVM_DIR $(/opt/local/bin/llvm-config --cmakedir)"
}
}