-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "llrtsp",
"version": "1.0.0",
"description": "RTSP parser in LLVM IR",
"main": "index.js",
"scripts": {
"build": "ts-node bin/generate.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build-ts": "tsc",
"clean": "rm -rf lib && rm -rf test/tmp",
"prepare": "npm run clean && npm run build-ts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:Jet-Streaming/llrtsp.git"
},
"keywords": [
"rtsp",
"llvm",
"ir",
"llparse"
],
"author": "Jia Kai <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.13",
"llparse-dot": "^1.0.1",
"llparse-test-fixture": "^3.3.3",
"mdgator": "^1.1.2",
"mocha": "^7.1.1",
"ts-node": "^7.0.1",
"tslint": "^5.20.1",
"typescript": "^3.7.5"
},
"dependencies": {
"@types/semver": "^5.5.0",
"llparse": "^6.2.2",
"semver": "^5.7.1"
}
}