-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 946 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
38
39
40
41
42
43
{
"name": "woklang",
"version": "1.0.0",
"description": "A WASM compiler",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"prepublish": "tsc",
"scripts": {
"test": "jest",
"build": "tsc",
"compileTsWatch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LukasM01/Selvet.git"
},
"keywords": [
"compiler",
"wasm",
"reactive"
],
"author": "Lukas Möller",
"license": "MIT",
"bugs": {
"url": "https://github.com/LukasM01/Selvet/issues"
},
"homepage": "https://github.com/LukasM01/Selvet#readme",
"devDependencies": {
"@types/jest": "^24.0.16",
"gulp": "^4.0.2",
"gulp-ext-replace": "^0.3.0",
"gulp-pegjs": "^0.1.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-pegjs": "^0.2.6",
"tsc": "^1.20150623.0",
"tslint": "^5.18.0"
},
"dependencies": {
"chalk": "^2.4.2",
"commandpost": "^1.4.0"
}
}