-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 863 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
{
"name": "@yournamespace/yourproject",
"version": "0.1.0",
"description": "Provides yourproject functionality.",
"license": "GPL-2.0-or-later",
"author": {
"name": "Your Name",
"email": "[email protected]",
"url": "https://yournamespace.com"
},
"contributors": [],
"repository": "github:yournamespace/yourproject",
"bugs": "https://github.com/yournamespace/yourproject/issues",
"directories": {
"test": "tests"
},
"scripts": {
"build": "echo Would run build",
"lint": "echo Would run code lint",
"lint-fix": "echo Would run code lint fix",
"test": "echo Would run tests",
"reset": "rm -Rf node_modules package-lock.json"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=20.0.0"
},
"dependencies": {}
}