-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
53 lines (53 loc) · 1.6 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
{
"name": "hybrid-crypto-js",
"version": "0.2.4",
"description": "Hybrid (RSA+AES) encryption and decryption toolkit for JavaScript",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run build",
"webpack": "browserify lib/webpack.js -o web/hybrid-crypto.js",
"uglify": "uglifyjs web/hybrid-crypto.js -o web/hybrid-crypto.min.js",
"flow": "flow",
"babel": "babel src/ -d lib/",
"build": "npm run babel && npm run webpack && npm run uglify",
"test": "npm run babel && mocha -R spec"
},
"repository": {
"type": "git",
"url": "https://github.com/juhoen/hybrid-crypto-js.git"
},
"keywords": [
"rsa",
"aes",
"rsa+aes",
"react",
"node",
"react-native"
],
"author": "Juho Enala <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/juhoen/hybrid-crypto-js/issues"
},
"homepage": "https://github.com/juhoen/hybrid-crypto-js",
"dependencies": {
"node-forge": "^0.8.5"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^6.26.0",
"babel-preset-env": "1.6.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.5.0",
"chai": "^4.1.2",
"flow-bin": "^0.107.0",
"mocha": "^4.0.1",
"prettier": "^1.18.2",
"uglify-js": "^3.2.1"
},
"browserslist": "> 0.25%, not dead"
}