-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 908 Bytes
/
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
{
"name": "bitcode",
"version": "1.2.0",
"description": "LLVM bitcode generator",
"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",
"lint": "tslint -c tslint.json src/*.ts src/**/*.ts src/**/**/*.ts test/*.ts",
"mocha": "mocha -r ts-node/register/type-check --reporter spec test/*-test.ts",
"test": "npm run mocha && npm run lint"
},
"keywords": [
"bitcode",
"binary",
"llvm"
],
"author": "Fedor Indutny <fedor@indutny.com> (http://darksi.de/)",
"license": "MIT",
"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"
},
"dependencies": {
"bitcode-builder": "^1.2.0"
}
}