-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "auli",
"version": "1.0.0",
"description": "An interpreter for a subset of Lisp so small that it's almost useless.",
"main": "dist/auli.js",
"scripts": {
"auli": "yarn build && node dist/auli.js",
"build": "node ./esbuild.js",
"test": "jest --runInBand -c jest.config.js",
"eslint": "eslint --fix --ignore-path .eslintignore --ext .js,.ts .",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/samcooper720x/auli.git"
},
"license": "MIT",
"author": "Sam Cooper",
"bugs": {
"url": "https://github.com/samcooper720x/auli/issues"
},
"homepage": "https://github.com/samcooper720x/auli#readme",
"devDependencies": {
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"esbuild": "^0.15.5",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^28.1.3",
"prettier": "^2.5.1",
"ts-jest": "^28.0.7",
"typescript": "^4.5.5"
},
"volta": {
"node": "16.17.0",
"yarn": "1.22.19"
},
"packageManager": "[email protected]"
}