forked from asmcrypto/asmcrypto.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.4 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
{
"name": "asmcrypto.js",
"version": "2.3.2",
"description": "Asm.js implementation of WebCrypto API",
"homepage": "https://github.com/asmcrypto/asmcrypto.js",
"main": "asmcrypto.all.js",
"module": "asmcrypto.all.es8.js",
"license": "MIT",
"author": {
"name": "Ádám Lippai",
"email": "[email protected]",
"web": "https://github.com/alippai"
},
"contributors": [
{
"name": "Artem S Vybornov",
"email": "[email protected]",
"web": "https://github.com/vibornoff"
},
{
"name": "Ximin Luo",
"email": "[email protected]",
"web": "https://github.com/infinity0"
}
],
"repository": {
"type": "git",
"url": "https://github.com/asmcrypto/asmcrypto.js.git"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^8.0.3",
"@types/node": "^10.12.2",
"chai": "^4.2.0",
"esm": "3.2.25",
"fs-extra": "^9.0.1",
"mocha": "^8.1.3",
"prettier": "^1.14.3",
"rollup": "2.28.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.1.6"
},
"scripts": {
"prepare": "node -r esm build.js",
"test": "node -r esm build.js && mocha -r esm test/*.js",
"prettier": "prettier --single-quote --trailing-comma all --write \"src/**/*.js\" \"src/**/*.ts\" --print-width 120"
},
"typings": "./dist_es8/entry-export_all.d.ts",
"dependencies": {}
}