-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.98 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.98 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
{
"name": "@nolai/paas-client",
"version": "0.11.0",
"description": "PEP Authorization API Service client",
"repository": {
"type": "git",
"url": "git+https://github.com/NOLAI/paas-client-js.git"
},
"type": "module",
"main": "dist/paas-client.js",
"exports": {
"browser": "./dist/paas-client.browser.js",
"plain": "./dist/paas-client.browser.plain.js",
"node": "./dist/paas-client.js",
"default": "./dist/paas-client.js"
},
"module": "dist/paas-client.js",
"types": "dist/paas-client.d.ts",
"files": [
"dist/paas-client.browser.js",
"dist/paas-client.browser.plain.js",
"dist/paas-client.js",
"dist/paas-client.d.ts",
"README.md"
],
"scripts": {
"build": "rollup -c && sed '$d;N;$d' dist/paas-client.browser.plain.js > dist/paas-client.browser.plain.js.tmp && echo '})\nexport default PaaSClient;' >> dist/paas-client.browser.plain.js.tmp && mv dist/paas-client.browser.plain.js.tmp dist/paas-client.browser.plain.js",
"format": "prettier --write .",
"lint": "eslint --fix",
"test": "npm run build && NODE_OPTIONS=--experimental-vm-modules jest"
},
"authors": [
{
"name": "Julian van der Horst",
"email": "julian.vanderhorst@ru.nl"
},
{
"name": "Job Doesburg",
"email": "job@jobdoesburg.nl",
"url": "https://jobdoesburg.nl"
}
],
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"rollup-plugin-dts": "^6.3.0",
"@types/jest": "^30.0.0",
"eslint": "^9.39.2",
"globals": "^17.0.0",
"jest": "^30.2.0",
"msw": "^2.12.7",
"prettier": "^3.7.4",
"rollup": "^4.55.1",
"rollup-plugin-copy": "^3.5.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0"
},
"dependencies": {
"@nolai/libpep-wasm": "^0.12"
}
}