forked from nodejs/llparse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.29 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
44
45
46
47
48
49
50
51
{
"name": "llparse",
"version": "6.2.1",
"description": "Compile parsers to LLVM bitcode",
"main": "lib/api.js",
"types": "lib/api.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 test/**/*.ts",
"fix-lint": "npm run lint -- --fix",
"mocha": "mocha --timeout=10000 -r ts-node/register/type-check --reporter spec test/*-test.ts",
"test": "npm run mocha && npm run lint"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/indutny/llparse.git"
},
"keywords": [
"llparse",
"compiler",
"bitcode"
],
"author": "Fedor Indutny <[email protected]> (http://darksi.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/indutny/llparse/issues"
},
"homepage": "https://github.com/indutny/llparse#readme",
"devDependencies": {
"@types/debug": "0.0.30",
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.10",
"esm": "^3.2.25",
"llparse-test-fixture": "^3.3.1",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
},
"dependencies": {
"bitcode": "^1.2.0",
"debug": "^3.2.6",
"llparse-frontend": "^1.2.1"
}
}