-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.21 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
{
"name": "vernam-cipher",
"version": "0.4.1",
"description": "Vernam cipher JS implementation",
"main": "index.js",
"scripts": {
"test": "eslint ./lib && mocha-webpack ./lib/test/**/*.js",
"build": "gulp clean && gulp build",
"start": "gulp watch",
"publish:prod": "gulp publish:prod",
"publish": "gulp publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeckson/vernam-cipher.git"
},
"keywords": [
"vernam",
"cipher"
],
"author": "Evgenii Shchepotev",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/zeckson/vernam-cipher/issues"
},
"homepage": "https://github.com/zeckson/vernam-cipher#readme",
"devDependencies": {
"browser-sync": "2.18.8",
"del": "2.2.2",
"eslint": "4.18.2",
"eslint-config-htmlacademy": "0.2.2",
"gh-pages": "0.12.0",
"gulp": "3.9.1",
"gulp-concat-css": "2.3.0",
"gulp-template": "4.0.0",
"gulp-util": "3.0.8",
"mocha": "3.2.0",
"mocha-webpack": "1.0.0-beta.1",
"webpack": "2.2.1",
"webpack-stream": "3.2.0"
},
"dependencies": {
"jshashes": "1.0.6",
"open-iconic": "^1.1.1",
"zxcvbn": "4.4.2"
},
"engines": {
"node": "<=8"
}
}