-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 967 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
43
44
{
"name": "ebg13",
"version": "1.3.10",
"description": "Simple Rot13 implementation",
"main": "index.js",
"scripts": {
"test": "eslint . && jest",
"lint": "eslint ."
},
"bin": {
"ebg": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guioconnor/ebg13.git",
"bugs": {
"url": "https://github.com/guioconnor/ebg13/issues"
}
},
"keywords": [
"rot13",
"cryptography",
"cypher",
"math",
"caesar cipher"
],
"author": "Guilherme Zühlke O'Connor",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/guioconnor/ebg13/issues"
},
"homepage": "https://github.com/guioconnor/ebg13#readme",
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"jest": "^19.0.2"
},
"dependencies": {
"chalk": "^1.1.3",
"cowsay": "^1.1.9",
"minimist": "^1.2.0"
}
}