-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.6 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
{
"name": "fauxauth",
"version": "11.0.0",
"private": true,
"description": "Helper application for testing OAuth clients",
"engines": {
"node": "^22.12 || >=24"
},
"scripts": {
"build": "npm --workspace packages/fauxauth run build",
"build:docker": "docker build . --build-arg ALPINE_RELEASE=3.23 --build-arg NODE_RELEASE=$(cat .nvmrc) --tag textbook/fauxauth",
"e2e": "npm --workspace packages/e2e run e2e",
"e2e:custom": "npm --workspace packages/e2e run custom-e2e",
"pree2e:docker": "npm run build:docker",
"e2e:docker": "cross-env NODE_RELEASE=$(cat .nvmrc) TAG=latest npm --workspace packages/e2e run docker",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint \"**/*.css\"",
"lint:js": "eslint .",
"ship": "npm run lint && npm run test && npm run build && npm run e2e && npm run e2e:custom",
"test": "npm --workspace packages/fauxauth test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/textbook/fauxauth.git"
},
"author": "Jonathan Sharpe",
"license": "ISC",
"bugs": {
"url": "https://github.com/textbook/fauxauth/issues"
},
"homepage": "https://github.com/textbook/fauxauth#readme",
"funding": "https://ko-fi.com/textbook",
"devDependencies": {
"@codeyourfuture/eslint-config-standard": "^8.1.1",
"eslint": "^10.2.0",
"eslint-plugin-jest": "^29.15.2",
"globals": "^17.5.0",
"stylelint": "^17.8.0",
"stylelint-config-standard": "^40.0.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.2"
},
"workspaces": [
"packages/e2e",
"packages/fauxauth"
]
}