-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
41 lines (41 loc) · 1004 Bytes
/
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
{
"name": "opencrypto",
"version": "1.5.5",
"description": "OpenCrypto is a lightweight JavaScript library built on top of WebCryptography API",
"main": "src/OpenCrypto.js",
"files": [
"index.js",
"types/**/*"
],
"types": "types/OpenCrypto.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/safebash/opencrypto.git"
},
"scripts": {
"test": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"createTypes": "tsc"
},
"license": "MIT",
"keywords": [
"cryptography",
"browser",
"webcryptography"
],
"bugs": {
"url": "https://github.com/safebash/opencrypto/issues",
"email": "[email protected]"
},
"devDependencies": {
"chai": "^4.2.0",
"es6-promise": "^4.2.8",
"karma": "^6.0.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"mocha": "^8.2.1",
"puppeteer": "^5.5.0",
"standard": "^16.0.3",
"typescript": "^4.1.3"
}
}