-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.45 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
44
45
46
47
48
49
50
{
"name": "@anvilco/encryption",
"version": "2.0.4",
"description": "RSA and AES Encryption helpers",
"main": "src/index.js",
"scripts": {
"test": "mocha --require test/environment.js 'test/**/*.test.js'",
"lint": "eslint 'src/**/*.js' 'test/**/*.js'",
"version": "auto-changelog -p --template keepachangelog && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anvilco/node-encryption.git"
},
"keywords": [
"crypto",
"encryption",
"rsa",
"aes"
],
"author": "Anvil Foundry Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/anvilco/node-encryption/issues"
},
"homepage": "https://github.com/anvilco/node-encryption#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"@anvilco:registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@babel/core": "^7.18.0",
"@babel/eslint-parser": "^7.17.0",
"auto-changelog": "^2.4.0",
"chai": "^4.3.6",
"eslint": "^8.16.0",
"eslint-config-nicenice": "^3.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^10.0.0",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0"
}
}