forked from AKASHAorg/easy-web-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.35 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
{
"name": "easy-web-crypto",
"version": "1.2.9",
"description": "Webcrypto API wrapper for the browser",
"author": "Andrei Sambra <[email protected]>",
"license": "MIT",
"keywords": [
"webcrypto",
"webcrypto api",
"cryptography",
"key derivation"
],
"repository": {
"type": "git",
"url": "https://github.com/AKASHAorg/easy-web-crypto.git"
},
"main": "dist/cjs/web-crypto.js",
"module": "dist/esm/web-crypto.js",
"files": [
"dist/"
],
"scripts": {
"build": "npm run tsc && webpack --mode production",
"test-only": "mocha-headless-chrome -f ./test/index.html -a no-sandbox -a disable-setuid-sandbox",
"test": "npm run build && mocha-headless-chrome -f ./test/index.html -a no-sandbox -a disable-setuid-sandbox",
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"prepublish": "npm run tsc"
},
"devDependencies": {
"@types/node": "^16.3.3",
"babel": "^6.23.0",
"chai": "^4.3.4",
"mocha": "^9.0.2",
"mocha-headless-chrome": "^3.1.0",
"standard": "^16.0.3",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.45.1",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"buffer": "github:feross/buffer"
}
}