-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.21 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "uguisu-js",
"version": "0.8.2",
"description": "The Uguisu is a statically typed scripting language.",
"license": "MIT",
"author": "marihachi",
"keywords": [
"language",
"programmimg-language",
"typescript",
"interpreter",
"static-analysis",
"script-engine",
"uguisu"
],
"main": "lib/index.js",
"type": "module",
"bin": {
"uguisu": "bin/uguisu.js"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uguisu-dev/uguisu.git"
},
"homepage": "https://github.com/uguisu-dev/uguisu#readme",
"bugs": {
"url": "https://github.com/uguisu-dev/uguisu/issues"
},
"scripts": {
"build": "tsc",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --verbose",
"cli": "node bin/uguisu.js",
"nightly": "node scripts/nightly.js"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.0",
"binaryen": "^112.0.0",
"fs-extra": "^11.1.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^4.9.0"
},
"dependencies": {
"char-regex": "^2.0.0"
},
"files": [
"bin/**/*",
"lib/**/*",
"CHANGELOG.md"
]
}