This repository was archived by the owner on Feb 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.8 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
{
"name": "zrc",
"type": "module",
"version": "0.1.0",
"description": "The Zirco compiler",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist/",
"tsc": "tsc",
"build": "yarn run clean; yarn run tsc",
"start": "yarn run build && yarn run start:node",
"prettier": "prettier . -w",
"prettier:check": "prettier . --check",
"test": "jest",
"start:node": "node --experimental-specifier-resolution=node .",
"prepare": "husky install",
"lint-staged": "lint-staged",
"lint": "eslint .",
"test:staged": "npx lint-staged",
"githook:commit-msg": "yarn run commitlint --edit",
"githook:pre-commit": "yarn run test:staged && yarn run build && yarn run test"
},
"repository": "https://github.com/zirco-lang/zrc.git",
"author": "LogN",
"license": "GPL-3.0",
"private": false,
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.4",
"@zirco-lang/eslint-config": "^1.0.0",
"@zirco-lang/prettier-config": "^1.0.0",
"@zirco-lang/ts-config": "^2.0.0",
"commitlint": "^17.3.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"typescript": "^4.9.4"
},
"lint-staged": {
"*.ts": [
"eslint",
"prettier --write"
],
"*.js": [
"eslint",
"prettier --write"
],
"*.md": [
"prettier --write"
],
"*.yml": [
"prettier --write"
],
"*.json": [
"prettier --write"
]
}
}