-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 KB
/
package.json
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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "bitcode-builder",
"version": "1.2.0",
"description": "API for building CFG graph for compilation to LLVM bitcode",
"main": "lib/bitcode.js",
"types": "lib/bitcode.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf lib",
"prepare": "npm run clean && npm run build",
"mocha": "mocha -r ts-node/register/type-check --reporter spec test/*-test.ts",
"lint": "tslint -c tslint.json src/*.ts src/**/*.ts src/**/**/*.ts test/*.ts",
"test": "npm run mocha && npm run lint"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/indutny/bitcode-builder.git"
},
"keywords": [
"bitcode",
"llvm",
"ir",
"cfg"
],
"author": "Fedor Indutny <fedor@indutny.com> (http://darksi.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/indutny/bitcode-builder/issues"
},
"homepage": "https://github.com/indutny/bitcode-builder#readme",
"devDependencies": {
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.7",
"mocha": "^5.0.4",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
}
}