-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 794 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 794 Bytes
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
{
"name": "vigenere-cipher",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha tests",
"lint": "./node_modules/.bin/eslint lib"
},
"author": "Module implementation of vigenere cipher",
"license": "ISC",
"dependencies": {
"array-intersection": "^0.1.2",
"debug": "^2.6.4",
"get-increment-decrement": "^1.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-things": "^0.2.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"sinon": "^2.1.0"
},
"author": "RickyAndi",
"license": "ISC",
"repository" : {
"type" : "git",
"url" : "https://github.com/RickyAndi/vigenere-cipher.git"
}
}