-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.28 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
{
"name": "@root/cipher",
"version": "1.0.2",
"description": "A simple AES-GCM cipher codec (for encrypting and decrypting)",
"main": "cipher.js",
"files": [
"cipher.js"
],
"scripts": {
"bump": "npm version -m \"chore(release): bump to v%s\"",
"fmt": "npm run prettier",
"lint": "npm run jshint && npm run tsc",
"test": "node ./tests/webcrypto.js",
"prepublish": "npm run reexport-types",
"--------": "-------------------------------------------------",
"jshint": "npx -p jshint@2.x -- jshint -c ./.jshintrc ./*.js",
"prettier": "npx -p prettier@2.x -- prettier -w '**/*.{js,md}'",
"reexport-types": "npx -p jswt@1.x -- reexport",
"tsc": "npx -p typescript@4.x -- tsc -p ./jsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/therootcompany/cipher.js.git"
},
"keywords": [
"aes",
"gcm",
"128-bit",
"192-bit",
"256-bit",
"cipher"
],
"author": "AJ ONeal <aj@therootcompany.com> (https://therootcompany.com/)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/therootcompany/cipher.js/issues"
},
"homepage": "https://github.com/therootcompany/cipher.js#readme",
"devDependencies": {
"@types/node": "^20.12.7",
"dotenv": "^16.4.5"
}
}