-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 KB
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
{
"name": "@vtfk/encryption",
"version": "1.0.3",
"description": "Node.js module to AES256 encrypt and decrypt an object with a key",
"private": false,
"main": "index.js",
"scripts": {
"test": "npm run test:standard && npm run test:jest",
"test:jest": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:standard": "standard",
"refresh": "rm -rf node_modules/ && rm package-lock.json && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vtfk/encryption.git"
},
"keywords": [],
"author": "Mats Andreassen <matsand@live.no> (https://github.com/matsand)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vtfk/encryption/issues"
},
"homepage": "https://github.com/vtfk/encryption#readme",
"dependencies": {
"crypto-js": "^4.2.0"
},
"devDependencies": {
"@types/jest": "26.0.24",
"jest": "^29.7.0",
"standard": "16.0.4"
},
"jest": {
"collectCoverageFrom": [
"/**/*.js"
]
},
"standard": {
"env": [
"jest"
]
}
}