-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (52 loc) · 1.1 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
51
52
53
54
55
56
57
58
59
60
{
"name": "cipherjs",
"version": "0.1.1",
"description": "Javascript implementation of simple ciphers",
"license": "MIT",
"repository": "sheharyarn/cipherjs",
"author": {
"name": "Sheharyar Naseer",
"email": "hello@sheharyar.me",
"url": "https://sheharyar.me/"
},
"main": "./src/index.js",
"bin": "./bin/cli.js",
"scripts": {
"build": "webpack",
"test": "mocha --reporter spec",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*",
"prepublish": "npm run build"
},
"files": [
"index.js",
"src",
"bin",
"dist"
],
"keywords": [
"cli",
"crypto",
"cryptography",
"cipher",
"caesar",
"substitution",
"vigenere",
"affine",
"encrypt",
"decrypt"
],
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.3.2",
"chai": "^3.5.0",
"coveralls": "^2.13.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"webpack": "^2.3.2"
},
"dependencies": {
"chalk": "^1.1.3",
"inquirer": "^3.0.5"
}
}