-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
55 lines (55 loc) · 1.4 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
{
"name": "@web-eid/web-eid-library",
"version": "2.0.2",
"description": "",
"scripts": {
"lint": "eslint . --ext .ts",
"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": "[email protected]:web-eid/web-eid.js.git"
},
"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": {
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.2.0",
"jest": "^27.3.1",
"rimraf": "^3.0.2",
"rollup": "^2.60.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-license": "^2.6.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
},
"dependencies": {}
}