-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 893 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
{
"name": "uwulang",
"version": "1.0.0",
"description": "the #1 programming language to get things done",
"main": "/src/interpreter.js",
"directories": {
"test": "test"
},
"scripts": {
"test1": "npx ts-node test/test1.ts",
"test2": "npx ts-node test/test2.ts",
"build": "tsc --target es6 ./test/test1.ts && tsc --target es6 ./test/test2.ts",
"test": "node ./test/test1.js && node ./test/test2.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UwULang/uwulang-js.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/UwULang/uwulang-js/issues"
},
"type": "module",
"homepage": "https://github.com/UwULang/uwulang-js#readme",
"devDependencies": {
"@types/node": "^18.14.0",
"typescript": "^4.9.5"
}
}