generated from jsynowiec/node-typescript-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.24 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
{
"name": "@inwebo/l-system.ts",
"version": "0.0.1",
"description": "An L-system or Lindenmayer system is a parallel rewriting system and a type of formal grammar.",
"type": "module",
"engines": {
"node": ">= 16.13 <17"
},
"devDependencies": {
"@types/jest": "~27.5",
"@types/node": "~16",
"@typescript-eslint/eslint-plugin": "~5.26",
"@typescript-eslint/parser": "~5.26",
"eslint": "~8.16",
"eslint-config-prettier": "~8.5",
"eslint-plugin-jest": "~26.2",
"jest": "~28.1",
"prettier": "~2.6",
"rimraf": "~3.0",
"ts-jest": "~28.0",
"tsutils": "~3.21",
"typescript": "~4.7"
},
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "jest --coverage",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "jest --watch"
},
"author": "inwebo <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"tslib": "~2.4"
},
"volta": {
"node": "16.13.0"
}
}