forked from artemiscloud/activemq-artemis-mock-oauth-server
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.18 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.18 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
{
"name": "activemq-artemis-oauth-server",
"version": "0.0.1",
"description": "mock oauth server",
"main": "index.js",
"author": "Thomas Lavocat",
"license": "Apache-2.0",
"scripts": {
"build": "yarn clean && tsc -p tsconfig.json",
"clean": "rm -rf dist",
"format:all": "prettier --config ./.prettierrc.yml --write './src/**/*'",
"lint": "yarn eslint src --fix && stylelint \"src/**/*.css\" --allow-empty-input --fix",
"prepare": "husky install",
"start": "node ./dist/app.js",
"test": "NODE_TLS_REJECT_UNAUTHORIZED=0 TZ=UTC jest --runInBand",
"test:coverage": "yarn run test --watch=false --coverage",
"test:generate-output": "yarn test -- --json --outputFile=.jest-test-results.json",
"ts-node": "ts-node -O '{\"module\":\"commonjs\"}'"
},
"devDependencies": {
"husky": "8.0.0",
"jest": "^27.5.1",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unused-imports": "^3.2.0",
"pretty-quick": "3.1.3",
"oauth2-mock-server": "^7.2.0",
"ts-node": "10.9.2",
"@types/node": "^20.10.4",
"@types/node-fetch": "^2.6.11",
"typescript": "^4.7.4"
}
}