-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 812 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
{
"name": "node-crypto-gcm",
"version": "1.0.6",
"description": "A node crypto wrap for AES GCM",
"main": "index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"pretest": "./node_modules/.bin/jshint && ./node_modules/.bin/eslint .",
"test": "./node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/mingchen/node-crypto-gcm",
"bugs": "https://github.com/mingchen/node-crypto-gcm/issues"
},
"keywords": [
"node",
"crypto",
"aes",
"gcm"
],
"author": "Ming Chen <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^7.4.0",
"jshint": "^2.11.1",
"mocha": "^8.0.1",
"should": "^13.2.3"
},
"dependencies": {},
"files": [
"index.js",
"gcm.js",
"index.d.ts"
]
}