-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.21 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.21 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
{
"name": "ascon-js",
"private": false,
"version": "1.0.4",
"author": "Simon Osterlehner <simon@osterlehner.de>",
"license": "MIT",
"sideEffects": false,
"main": "./dist/ascon-js.mjs",
"module": "./dist/ascon-js.mjs",
"browser": "./dist/ascon-js.umd.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"do:publish": "vitest run && npm publish --access=public",
"test:dev": "vitest",
"test": "vitest run",
"coverage": "vitest run --coverage"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^18.13.0",
"@vitest/coverage-c8": "^0.31.1",
"typescript": "^5.0.4",
"vite": "^4.3.8",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.31.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Simolation/ascon-js.git"
},
"homepage": "https://github.com/Simolation/ascon-js",
"bugs": {
"url": "https://github.com/Simolation/ascon-js/issues"
},
"keywords": [
"ascon",
"encryption",
"cryptography",
"crypto",
"hash",
"nist",
"aead"
]
}