-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.03 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.03 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "smalldevtalk",
"contributors": [
{
"name": "Alexander Sullivan",
"email": "alexjsully.connect@outlook.com",
"url": "https://alexjsully.me/"
},
{
"name": "Neil Rampone"
},
{
"name": "Jeffery Cen"
}
],
"version": "1.3.4",
"private": true,
"description": "Small Dev Talk - Talk with the Developers of the Future! Find interviews, news articles and reviews on the latest in the indie scene.",
"main": "index.html",
"devDependencies": {
"cypress": "^15.10.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-cypress": "^5.3.0",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"http-server": "^14.1.1",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"markdownlint-cli": "^0.47.0",
"prettier": "^3.8.1",
"start-server-and-test": "^2.1.3",
"workbox-cli": "^7.4.0"
},
"scripts": {
"audit:fix": "npm i && npm audit fix",
"cypress": "cypress open",
"e2e:headless": "start-server-and-test start http://localhost:3000 \"cypress run --e2e --browser electron\"",
"eslint": "eslint --fix ./",
"eslint:check": "eslint ./",
"lint:markdown": "markdownlint \"**/*.md\"",
"prettier": "prettier --write ./",
"prettier:check": "prettier --check ./",
"regen-package-lock": "rm -rf node_modules package-lock.json && npm run audit:fix",
"start": "http-server . -p 3000 -c-1",
"test": "jest",
"test:verbose": "jest --verbose --silent=false",
"validate": "npm run prettier && npm run eslint && npm run test && npm run e2e:headless && npm run lint:markdown",
"workbox": "workbox generateSW"
},
"bugs": {
"url": "https://github.com/AlexJSully/Small-Dev-Talk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexJSully/Small-Dev-Talk.git"
},
"keywords": [
"comics",
"design",
"entertainment",
"fashion",
"game",
"game-development",
"gamedev",
"indie",
"movies",
"news",
"technology",
"tumblr",
"website"
],
"license": "GPL-3.0",
"homepage": "https://github.com/AlexJSully/Small-Dev-Talk#readme"
}