-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.87 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "joelang",
"version": "0.0.0",
"description": "A programming lang that aims to be simple to read",
"scripts": {
"build": "tsc",
"dev": "tsc -w &",
"joec": ".bin/joec",
"lint": "tsc --noEmit && eslint --ext .ts .",
"lint-fix": "tsc --noEmit && eslint --ext .ts . --fix",
"prettier": "prettier --check .",
"prettier-fix": "prettier --write .",
"test": "jest --detectOpenHandles && npm run --silent test-integration",
"test-integration": "joec examples/kitchen-sink/main.joe -a"
},
"bin": "_build/compile.js",
"pkg": {
"scripts": "_build/**/*.js",
"assets": [
"node_modules/llvm-bindings/build/Release/llvm-bindings.node"
],
"targets": [
"node18-linux-x64"
],
"outputPath": "."
},
"repository": {
"type": "git",
"url": "git+https://github.com/josephzidell/joelang.git"
},
"keywords": [
"node",
"app",
"ts"
],
"author": "Joe Zidell",
"license": "ISC",
"bugs": {
"url": "https://github.com/josephzidell/joelang/issues"
},
"homepage": "https://github.com/josephzidell/joelang#readme",
"dependencies": {
"fs-extra": "^11.1.1",
"jest": "^29.6.1",
"json-diff": "^1.0.6",
"llvm-bindings": "^0.4.2",
"lodash": "^4.17.21",
"type-fest": "^3.13.0",
"typescript": "^5.1.6"
},
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/preset-env": "^7.22.7",
"@babel/preset-typescript": "^7.22.5",
"@jest/globals": "^29.6.1",
"@types/fs-extra": "^11.0.1",
"@types/json-diff": "^1.0.0",
"@types/lodash": "^4.14.195",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-jest": "^29.6.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1"
}
}