-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "isikukood",
"version": "3.1.6",
"description": "Estonian personal ID (isikukood) JavaScript module",
"main": "src/isikukood.ts",
"module": "dist/isikukood.esm.min.js",
"standalone": "dist/isikukood.min.js",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"build": "make build",
"test": "make test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dknight/Isikukood-js.git"
},
"keywords": [
"isikukood",
"estonia",
"eesti",
"personalid"
],
"author": "Dmitri Smirnov",
"license": "MIT",
"bugs": {
"url": "https://github.com/dknight/Isikukood-js/issues"
},
"homepage": "https://github.com/dknight/Isikukood-js/",
"devDependencies": {
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"esbuild": "0.14.47",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {
"babel-jest": "^29.5.0",
"jest": "^29.5.0"
}
}