-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 873 Bytes
/
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
{
"name": "ts-that-grow",
"type": "module",
"version": "1.0.0",
"description": "Example Project for \"Trees that Grow\" in TypeScript",
"scripts": {
"lint": "eslint --ext ts src",
"fix:lint": "eslint --ext ts --fix src",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/igrep/ts-that-grow.git"
},
"keywords": [
"typescript",
"example"
],
"author": "Internet Initiative Japan Inc.",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/igrep/ts-that-grow/issues"
},
"homepage": "https://github.com/igrep/ts-that-grow#readme",
"devDependencies": {
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
}
}