-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "crystallizer",
"description": "A TypeScript to Crystal compiler. All the beauty and power of TypeScript, with all the speed and compatibility of Crystal.",
"version": "1.0.0",
"main": "dist/main.js",
"bin": "dist/main.js",
"scripts": {
"start": "node dist/main.js",
"test": "cd runtime_lib && shards install && cd .. && mocha dist/tests && cd runtime_lib && crystal spec -v --fail-fast && rm -rf shard.lock && rm -rf lib/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/R-unic/crystallizer.git"
},
"keywords": [
"compiler",
"typescript",
"crystal",
"ts",
"cr",
"ruby",
"transpiler"
],
"author": "R-unic",
"license": "MIT",
"bugs": {
"url": "https://github.com/R-unic/crystallizer/issues"
},
"homepage": "https://github.com/R-unic/crystallizer#readme",
"dependencies": {
"@types/node": "^20.5.7",
"cmd-ts": "^0.13.0",
"colors.ts": "^1.0.20",
"json5": "^2.2.3",
"mocha": "^10.2.0",
"should": "^13.2.3",
"tslib": "^2.6.2",
"typescript": "^5.1.3"
},
"devDependencies": {
"@types/mocha": "^10.0.1"
}
}