forked from Amourspirit/node-base64-string
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.67 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"_name": "base64string",
"name": "base64-string",
"version": "1.1.2",
"description": "Encode or decode base64 strings - including cli",
"homepage": "https://github.com/Amourspirit/node-base64-string",
"repository": {
"type": "git",
"url": "git://github.com/Amourspirit/node-base64-string.git"
},
"bugs": {
"url": "https://github.com/Amourspirit/node-base64-string/issues"
},
"scripts": {
"build": "grunt default",
"test": "grunt build && grunt test",
"lint": "tslint -p tsconfig.json"
},
"keywords": [
"base64",
"encode",
"decode",
"urlEncode",
"urlDecode",
"base64-cli"
],
"files": [
"index.js",
"index.d.ts",
"bin",
"LICENSE"
],
"author": "Paul Moss",
"license": "MIT",
"engines": {
"node": ">=6"
},
"devDependencies": {
"@ephox/tslint-rules": "^1.1.1",
"@types/chai": "^4.2.12",
"@types/mkdirp": "^1.0.1",
"@types/mocha": "^8.0.1",
"chai": "^4.2.0",
"grunt": "^1.2.1",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-env": "^1.0.1",
"grunt-prettier": "^2.1.0",
"grunt-remove-comments": "^0.1.6",
"grunt-replace": "^2.0.2",
"grunt-shell": "^3.0.1",
"grunt-terser": "^1.0.0",
"grunt-tslint": "^5.0.2",
"load-grunt-tasks": "^5.1.0",
"mocha": "^8.1.0",
"mocha-sinon": "^2.1.2",
"randomstring": "^1.1.5",
"sinon": "^9.0.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7"
},
"main": "./index.js",
"bin": {
"base64-string": "bin/base64.js"
},
"typings": "./index.d.ts",
"dependencies": {
"mkdirp": "^1.0.4"
}
}