-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
89 lines (89 loc) · 1.86 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "libeaes",
"version": "1.3.0",
"description": "Enhanced simultaneous compression + encryption with NodeJS",
"main": "dist/index.js",
"types": "typings/index.d.ts",
"scripts": {
"push": "git push github master",
"build": "babel lib -sd dist",
"version": "npm run build",
"postversion": "npm run push"
},
"bin": {
"libeaes": "cli.js"
},
"engines": {
"node": ">=4"
},
"files": [
"dist",
"typings"
],
"keywords": [
"eaes",
"aes",
"crypto",
"gzip",
"zlib",
"compress",
"decompress",
"encrypt",
"decrypt"
],
"authors": [
"Miraculous Owonubi <[email protected]>",
"Samuel Adenle <[email protected]>"
],
"maintainers": [
"Miraculous Owonubi <[email protected]>"
],
"repository": {
"type": "git",
"url": "[email protected]:miraclx/libeaes-js.git"
},
"bugs": {
"url": "https://github.com/miraclx/libeaes-js/issues"
},
"license": "Apache-2.0",
"babel": {
"presets": [
"airbnb",
[
"@babel/preset-env",
{
"corejs": 2,
"useBuiltIns": "usage",
"targets": {
"node": 4
}
}
]
]
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-eslint": "^10.0.1",
"babel-preset-airbnb": "^3.2.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.0.1",
"prettier": "^1.17.0"
},
"dependencies": {
"commander": "^2.20.0",
"core-js": "^2.6.5",
"ninja_query": "^0.3.3",
"xbytes": "^1.4.0",
"xprogress": "^0.9.9"
},
"homepage": "https://github.com/miraclx/libeaes-js#readme",
"directories": {
"lib": "lib",
"test": "test"
}
}