-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 908 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 908 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
31
32
{
"name": "hello-llvm",
"version": "1.0.0",
"description": "LLVM IR Tutorial",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean:objects": "find . -name '*.o' -type f -delete",
"clean:executables": "find . -maxdepth 2 -type f -perm +111 | xargs rm -f",
"clean:png": "rm -f tmp/*.png"
},
"keywords": [],
"author": "Casiano Rodriguez Leon <crguezl@ull.edu.es> (https://crguezl.github.io/)",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"llvm-bindings": "^0.4.2"
},
"directories": {
"doc": "docs",
"example": "examples"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/ULL-ESIT-PL/hello-llvm.git"
},
"bugs": {
"url": "https://github.com/ULL-ESIT-PL/hello-llvm/issues"
},
"homepage": "https://github.com/ULL-ESIT-PL/hello-llvm#readme"
}