forked from juhoen/hybrid-crypto-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "hybrid-crypto-js",
"version": "0.1.7",
"description": "Hybrid (RSA+AES) encryption and decryption toolkit for JavaScript",
"main": "lib/index.js",
"scripts": {
"test": "mocha --require babel-core/register -R spec",
"webpack": "browserify lib/webpack.js -o web/hybrid-crypto.js -t [ babelify --presets [ react-native ] ]",
"uglify": "uglifyjs web/hybrid-crypto.js -o web/hybrid-crypto.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juhoen/react-native-hybrid-crypto.git"
},
"keywords": [
"rsa",
"aes",
"rsa+aes",
"react-native",
"react",
"native"
],
"author": "Juho Enala <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/juhoen/react-native-hybrid-crypto/issues"
},
"homepage": "https://github.com/juhoen/react-native-hybrid-crypto#readme",
"peerDependencies": {
"react-native": ">= 0.48.0"
},
"dependencies": {
"node-forge": "^0.7.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "1.6.0",
"babelify": "^8.0.0",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"uglify-js": "^3.2.1"
},
"babel": {
"presets": [
"react-native"
]
}
}