-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1 KB
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
{
"name": "eslox",
"version": "1.0.0",
"main": "bin/index.js",
"type": "module",
"bin": {
"eslox": "./bin/index.js"
},
"scripts": {
"debug": "node --inspect-brk ./bin/index.js",
"dev": "node ./bin/index.js",
"prepare": "husky install",
"lint": "eslint .",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"keywords": [
"lox",
"lox-interpreter",
"lox-javascript",
"crafting-interpreters"
],
"author": "Richie McColl",
"license": "MIT",
"description": "ECMAScript implementation of lox language from Crafting Interpreters book",
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@vitest/coverage-c8": "^0.26.2",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"vitest": "^0.26.2"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
}
}