forked from CivicTechWR/project-union-coop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.53 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.53 KB
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
{
"name": "@civictechwr/project-template",
"version": "1.0.0",
"description": "CivicTechWR comprehensive project template with 12-week lifecycle and GitHub automation",
"keywords": [
"civic-tech",
"template",
"government",
"community",
"github-template"
],
"homepage": "https://civictechwr.github.io/CTWR-Project-Template-New/",
"repository": {
"type": "git",
"url": "https://github.com/CivicTechWR/CTWR-Project-Template-New.git"
},
"bugs": {
"url": "https://github.com/CivicTechWR/CTWR-Project-Template-New/issues"
},
"license": "MIT",
"author": {
"name": "CivicTechWR",
"email": "noreply@civictechwr.org",
"url": "https://civictechwr.org"
},
"contributors": [
{
"name": "CivicTechWR Community",
"url": "https://civictechwr.org"
}
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"version": "echo 'Template version:' $npm_package_version",
"changelog": "echo 'See CHANGELOG.md for release notes'",
"release": "echo 'Use GitHub Releases for official releases'",
"lint": "eslint . --ext .js,.cjs,.mjs,.ts",
"lint:fix": "npm run lint -- --fix",
"format": "prettier \"**/*.{js,cjs,mjs,ts,json,yml,yaml}\" --check",
"format:fix": "npm run format -- --write"
},
"civictechwr": {
"template_version": "1.0.0",
"season_lifecycle": "12-weeks",
"last_updated": "2025-09-28"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.7.4"
}
}