-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.13 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
{
"name": "string-codec",
"version": "0.1.0",
"description": "Encoder/Decoder of various algorithm",
"main": "./lib/string-codec.js",
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "https://github.com/knjcode/string-codec"
},
"keywords": [
"string",
"hex",
"encode",
"encrypt",
"hash",
"decode",
"decrypt",
"crypt",
"cipher"
],
"author": "knjcode <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/knjcode/string-codec/issues"
},
"homepage": "https://github.com/knjcode/string-codec",
"dependencies": {
"adler-32": "^1.0.0",
"ascii85": "^0.1.0",
"caesar-salad": "^1.0.1",
"cheerio": "^0.22.0",
"crc": "^3.2.1",
"sync-request": "^3.0.1"
},
"devDependencies": {
"coffee-script": "^1.9.2",
"event-stream": "^3.3.1",
"gulp": "^3.8.11",
"gulp-coffee": "^2.3.1",
"gulp-coffeelint": "^0.6.0",
"gulp-espower": "^1.0.2",
"gulp-load-plugins": "^1.3.0",
"gulp-mocha": "^3.0.1",
"gulp-sourcemaps": "^2.1.1",
"gulp-util": "^3.0.4",
"power-assert": "^1.4.1"
}
}