-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 799 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 799 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
33
34
35
{
"name": "cipher",
"version": "0.9.1",
"description": "Using analysis of English language text find one-to-one cipher for encrypted text",
"main": "ciper.js",
"scripts": {
"test": "tba",
"watch": "nodemon --harmony cipher.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amnotafraid/cipher.git"
},
"keywords": [
"cipher",
"decrypt",
"codebreaking",
"JavaScript",
"ES2015",
"cryptography",
"letter",
"substitution"
],
"author": "Bessie Malek",
"license": "ISC",
"bugs": {
"url": "https://github.com/amnotafraid/cipher/issues"
},
"homepage": "https://github.com/amnotafraid/cipher#readme",
"dependencies": {
"performance-now": "^2.1.0",
"ramda": "^0.24.1",
"through2": "^2.0.3"
}
}