-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.12 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": "parenthis-lang",
"version": "1.0.0",
"description": "(parenthis) is an esoteric programming language",
"author": "douira",
"private": false,
"license": "UNLICENSED",
"engines": {
"node": ">=15"
},
"repository": {
"type": "git",
"url": "[email protected]:douira/parenthis-lang.git"
},
"scripts": {
"run": "tsc && node ./build/index.js",
"test": "jest",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"format-all": "eslint --fix --ext .ts --ignore-path .gitignore .",
"precommit": "npm run format-all"
},
"devDependencies": {
"@types/fs-extra": "^9.0.11",
"@types/node": "^15.6.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-sonarjs": "^0.7.0",
"jest": "^27.0.6",
"prettier": "^2.3.0",
"ts-node": "^10.1.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.2"
}
}