-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.09 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
{
"name": "zug",
"version": "0.2.1",
"description": "A mobile-friendly language for programming on the go!",
"main": "index.js",
"scripts": {
"test": "ava",
"dev": "ts-node src/index.ts",
"build": "rm -rf ./dist && tsc -p . && cp ./src/libzug/lib/*.zug ./dist/libzug/lib"
},
"bin": {
"zug": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/olliemath/zug.git"
},
"author": "olliemath ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/olliemath/zug/issues"
},
"homepage": "https://github.com/olliemath/zug#readme",
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@types/node": "^15.6.2",
"ava": "^3.15.0",
"prettier": "^2.3.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"dependencies": {},
"ava": {
"extensions": {
"ts": "module"
},
"nonSemVerExperiments": {
"configurableModuleFormat": true
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"moduleDirectories": [
"node_modules",
"src"
]
}