forked from DavidTanner/nodecredstash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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": "nodecredstash",
"version": "2.0.0",
"description": "Node.js credstash implementation",
"main": "js/index.js",
"engines": {
"node": ">=4.2.3",
"npm": ">=2.14.7"
},
"scripts": {
"test": "npm run lint && npm run coverage",
"coverage": "node ./test/mocha.js junit coverage",
"lint": "./node_modules/.bin/eslint ."
},
"keywords": [
"credstash",
"kms",
"aws",
"node.js"
],
"author": "David Tanner",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DavidTanner/nodecredstash.git"
},
"devDependencies": {
"aws-sdk-mock": "^1.7.0",
"chai": "4.1.2",
"chai-string": "^1.4.0",
"coveralls": "3.0.0",
"eslint": "4.13.1",
"eslint-config-airbnb": "16.1.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-chai-expect": "^1.1.1",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.5.1",
"glob": "7.1.2",
"istanbul": "^0.4.5",
"lodash": "^4.17.4",
"mocha": "4.0.1",
"mocha-junit-reporter": "1.15.0",
"rimraf": "2.6.2"
},
"dependencies": {
"aes-js": "^3.1.0",
"debug": "3.1.0"
}
}