-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.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
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
76
77
78
79
80
81
82
83
84
85
{
"name": "@bemit/auth-perms",
"version": "0.0.1",
"description": "",
"homepage": "https://bemit.codes",
"author": {
"name": "bemit",
"url": "https://bemit.codes"
},
"contributors": [
{
"name": "Michael Becker",
"url": "https://i-am-digital.eu"
}
],
"license": "MIT",
"keywords": [
],
"engines": {
"node": ">=14"
},
"type": "module",
"exports": {
"./AppAuth": "./AppAuth.js",
"./AuthCanDo": "./AuthCanDo.js",
"./AuthGrants": "./AuthGrants.js",
"./AuthRuleError": "./AuthRuleError.js",
"./AuthSigner": "./AuthSigner.js",
"./AuthValidator": "./AuthValidator.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bemit/nodejs-auth-perms.git"
},
"scripts": {
"prebuild": "npm run clean-dist && npm run test",
"build": "cross-env NODE_ENV=production CI=true npm run build-babel",
"postbuild": "npm run dtsgen",
"build-babel": "babel src --no-comments --extensions .ts --extensions .tsx --extensions .js --extensions .jsx --ignore **/*.d.ts --ignore **/*.test.ts --out-dir build",
"clean-dist": "rimraf build",
"test": "jest -c=\"jest.config.ts\" --passWithNoTests",
"tdd": "npm test -- --watch --watchman --coverage=false",
"dtsgen": "tsc -d --emitDeclarationOnly --pretty && cp -R build/dts/* build && rm -rf build/dts"
},
"peerDependencies": {
},
"peerDependenciesMeta": {
},
"dependencies": {
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/eslint-parser": "^7.22.9",
"@babel/node": "^7.22.6",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@jest/types": "^29.6.1",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"babel-jest": "^29.6.2",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"eslint": "^8.46.0",
"eslint-plugin-deprecation": "^1.5.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-react": "^7.33.1",
"jest": "^29.6.2",
"jest-runner-eslint": "^2.1.0",
"rimraf": "^5.0.1",
"symlink-dir": "^5.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"publishConfig": {
"access": "public"
},
"jest-runner-eslint": {
"cliOptions": {
"maxWarnings": 0
}
}
}