-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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": "argon2id",
"version": "1.0.1",
"description": "Argon2id implementation in pure Javascript",
"main": "index.js",
"type": "module",
"types": "index.d.ts",
"files": [
"dist/",
"lib/",
"index.d.ts"
],
"scripts": {
"test": "mocha --loader=ts-node/esm test/blake2b.spec.js test/argon2id.spec.ts",
"lint": "eslint index.js lib test",
"build": "rm -rf dist && mkdir dist && ./build-wasm.sh",
"test-browser": "karma start karma.config.cjs",
"preversion": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openpgpjs/argon2id.git"
},
"keywords": [
"argon2",
"argon2id",
"rfc9106"
],
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"chai": "^4.3.7",
"eslint": "^8.32.0",
"eslint-plugin-import": "^2.27.5",
"karma": "^6.4.1",
"karma-browserstack-launcher": "^1.6.0",
"karma-chrome-launcher": "^3.1.1",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webkit-launcher": "^2.1.0",
"karma-webpack": "^5.0.0",
"mocha": "^10.2.0",
"playwright": "^1.30.0",
"string-replace-loader": "^3.1.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"wasm-loader": "^1.3.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}