-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 899 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
42
{
"name": "@swiftyapp/cryptor",
"version": "1.1.2",
"description": "Basic encrypt and decrypt node module",
"main": "index.js",
"scripts": {
"test": "npx tape -r @babel/register test/*",
"build": "webpack"
},
"repository": "[email protected]:swiftyapp/cryptor.git",
"keywords": [
"cryptr",
"crypter",
"encrypt",
"decrypt",
"encryption",
"decryption",
"crypto",
"cipher",
"aes-256",
"aes256",
"aes-256-ctr",
"hashr"
],
"author": "Alex Chaplinsky",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/register": "^7.16.7",
"eslint": "^8.6.0",
"tape": "^5.4.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {},
"resolutions": {
"glob-parent": ">=5.1.2",
"minimist": "^1.2.5"
}
}