-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "rtjs-base",
"version": "0.9.0",
"description": "RT.js: A real-time capable pseudo-preemptive scheduler for JavaScript",
"repository": {
"type": "git",
"url": "git+https://github.com/luhsra/RT.js"
},
"keywords": [
"Real-Time Scheduling"
],
"license": "MIT",
"main": "build/index.js",
"bin": {
"rtjs-transpiler": "build/transpiler/rtjs-transpiler.js"
},
"scripts": {
"build": "npm run build-ts",
"build-ts": "tsc"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/lodash": "^4.14.117",
"@types/node": "^10.11.7",
"console.table": "^0.10",
"delay": "^4.1.0",
"ts-node": "^7.0.1",
"typedoc": "^0.14.2",
"typescript": "^3.2.2",
"typescript-formatter": "^7.2.2",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
},
"dependencies": {
"fastpriorityqueue": "^0.6.1",
"glob": "^7.1.3",
"lodash": "^4.17.11",
"perf_hooks": "0.0.1"
}
}