-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.65 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
{
"name": "derw",
"version": "0.0.10",
"description": "An Elm-inspired language that transpiles to TypeScript",
"main": "index.js",
"bin": "build/cli.js",
"scripts": {
"postinstall": "npx ts-node src/cli.ts compile",
"build": "npx derw compile",
"test": "npx @eeue56/bach",
"test-chromebook": "./test_on_chromebook.sh",
"bench": "npx @eeue56/mainc",
"format": "npx prettier --write .",
"prepublish": "npx ts-node src/cli.ts compile && npx tsc -p tsconfig.json",
"stdlib": "npx ts-node src/cli.ts compile --files ../derw-lang/stdlib/src/*.derw --output ../derw-lang/stdlib",
"test-stdlib": "npx @eeue56/bach --file ../derw-lang/stdlib/src/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eeue56/derw.git"
},
"keywords": [
"derw",
"typescript",
"hiraeth"
],
"author": "eeue56",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/eeue56/derw/issues"
},
"homepage": "https://github.com/eeue56/derw#readme",
"devDependencies": {
"@eeue56/mainc": "^0.0.6",
"@eeue56/ts-assert": "^0.0.2",
"@types/node": "^16.3.1",
"prettier": "github:eeue56/prettier#feat-eeue56/brackets"
},
"dependencies": {
"@eeue56/adeilad": "^0.0.2",
"@eeue56/bach": "^0.1.2",
"@eeue56/baner": "^0.0.3",
"@eeue56/ts-core": "^3.0.1",
"@types/node-fetch": "^2.5.12",
"chokidar": "^3.5.2",
"esbuild": "^0.14.11",
"node-fetch": "^2.6.6",
"typescript": "^4.9.5",
"trim": "^1.0.1"
}
}