-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "railfencecipher",
"version": "1.1.7",
"description": "Rail Fence Cipher: Encoding and Decoding",
"main": "index.js",
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"istanbul": "istanbul cover _mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/rjdangcc/railFenceCipher.git"
},
"keywords": [
"js",
"javascript",
"Rail Fence Cipher",
"encode",
"decode"
],
"author": "carlzz",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"pump": "^3.0.0",
"uglify-js": "^3.0.28",
"babel-polyfill": "^6.26.0",
"browserify": "^16.2.3"
}
}