-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 852 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
{
"name": "ceaser-cipher",
"version": "1.0.0",
"description": "This is an encryption technique in which each letter in the plaintext is replaced by a letter some fixed number of positions down or up the alphabet",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha --require babel-register tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/otseobande/ceaser-cipher.git"
},
"author": "Otse Obande",
"license": "ISC",
"bugs": {
"url": "https://github.com/otseobande/ceaser-cipher/issues"
},
"homepage": "https://github.com/otseobande/ceaser-cipher#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"mocha": "^5.2.0"
}
}