-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.61 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "fauxauth",
"version": "9.1.0",
"private": true,
"description": "Helper application for testing OAuth clients",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "npm --workspace packages/fauxauth run build",
"build:docker": "docker build . --build-arg ALPINE_RELEASE=3.19 --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 --ext=js,ts .",
"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": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^28.5.0",
"stylelint": "^16.6.0",
"stylelint-config-standard": "^36.0.0"
},
"workspaces": [
"packages/e2e",
"packages/fauxauth"
]
}