forked from web-eid/web-eid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.48 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.48 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
{
"name": "@web-eid/web-eid-library",
"version": "2.1.0-beta.0",
"description": "",
"scripts": {
"lint": "eslint",
"build": "npm run clean && npm run compile && npm run bundle",
"clean": "rimraf ./dist",
"compile": "tsc",
"bundle": "rollup -c",
"test": "jest -i --silent --verbose",
"prepare": "npm run build",
"prepack": "npm run test && cp -R ./dist/node/* ./",
"postpack": "rimraf ./web-eid.js ./config.js ./errors ./models ./services ./utils ./*.d.ts ./*.map"
},
"repository": {
"type": "git",
"url": "git@github.com:web-eid/web-eid.js.git"
},
"module": "web-eid.js",
"files": [
"config.d.ts",
"config.d.ts.map",
"config.js",
"config.js.map",
"web-eid.d.ts",
"web-eid.d.ts.map",
"web-eid.js",
"web-eid.js.map",
"errors/**/*",
"models/**/*",
"services/**/*",
"utils/**/*",
"dist/es/*",
"dist/iife/*",
"dist/umd/*"
],
"types": "web-eid.d.ts",
"author": "Tanel Metsar",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@stylistic/eslint-plugin-js": "^3.1.0",
"@stylistic/eslint-plugin-ts": "^3.0.1",
"@types/jest": "^29.5.14",
"eslint": "^9.19.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rimraf": "^6.0.1",
"rollup": "^4.34.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-license": "^3.5.3",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
}
}