-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.24 KB
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
{
"name": "rusty-typescript",
"version": "0.1.0",
"description": "A TypeScript compiler written in Rust",
"main": "index.js",
"scripts": {
"gulp": "gulp --gulpfile build.ts",
"build": "npm run gulp build",
"clean": "npm run gulp clean",
"inject": "npm run gulp inject",
"test": "npm run inject && cd TypeScript && npm install && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yever/rusty-typescript.git"
},
"keywords": [
"TypeScript",
"rust"
],
"author": "Ya'ar Hever <yaarhever@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/yever/rusty-typescript/issues"
},
"homepage": "https://github.com/yever/rusty-typescript#readme",
"devDependencies": {
"@types/gulp": "^4.0.6",
"@types/gulp-rename": "0.0.33",
"@types/gulp-replace": "0.0.31",
"@types/terser-webpack-plugin": "^1.2.1",
"@types/webpack": "^4.4.27",
"del": "^4.1.0",
"gulp": "^4.0.0",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"terser-webpack-plugin": "^1.2.3",
"ts-node": "^8.1.0",
"typescript": "^3.4.3",
"wasm-pack-npm": "^0.1.3",
"webpack": "^4.30.0"
},
"dependencies": {
"fast-text-encoding": "^1.0.0"
}
}