forked from asmcrypto/asmcrypto.js
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
58 lines (58 loc) · 1.5 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
56
57
58
{
"name": "@openpgp/asmcrypto.js",
"version": "3.1.0",
"description": "Asm.js implementation of WebCrypto API",
"homepage": "https://github.com/openpgpjs/asmcrypto.js",
"type": "module",
"exports": {
"./aes/*": {
"types": "./dist/aes/*",
"import": "./dist/aes/*"
}
},
"files": [
"dist/"
],
"license": "MIT",
"author": {
"name": "Ádám Lippai",
"email": "adam@rigo.sk",
"web": "https://github.com/alippai"
},
"contributors": [
{
"name": "Artem S Vybornov",
"email": "vybornov@gmail.com",
"web": "https://github.com/vibornoff"
},
{
"name": "Ximin Luo",
"email": "infinity0@pwned.gg",
"web": "https://github.com/infinity0"
}
],
"repository": {
"type": "git",
"url": "https://github.com/openpgpjs/asmcrypto.js.git"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^8.0.3",
"@types/node": "^20.2.5",
"chai": "^4.3.7",
"cpy-cli": "^4.2.0",
"mocha": "^10.2.0",
"prettier": "^1.14.3",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^5.0.4"
},
"scripts": {
"build": "rm -rf dist && tsc && cpy 'src/aes/aes.asm*' dist/aes",
"prepare": "npm run build",
"test": "npm run build && mocha test/*.js",
"preversion": "rm -rf dist node_modules && npm ci && npm test",
"prettier": "prettier --single-quote --trailing-comma all --write \"src/**/*.js\" \"src/**/*.ts\" --print-width 120"
}
}