-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
126 lines (126 loc) · 3.57 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"private": true,
"name": "cryptobench-js",
"version": "1.0.0",
"description": "Benchmarks for javascript crypto libraries",
"author": "Mikhail Nasyrov (http://mnasyrov.com)",
"license": "MIT",
"homepage": "https://github.com/mnasyrov/cryptobench-js#readme",
"bugs": {
"url": "https://github.com/mnasyrov/cryptobench-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mnasyrov/cryptobench-js.git"
},
"keywords": [
"crypto",
"benchmark",
"cordova"
],
"scripts": {
"postinstall": "bower install",
"prestart": "npm run build",
"start": "node lib/cryptobench.js",
"clean": "shx rm -rf ./dist ./www/dist ./www/vendor ./platforms/android/{build,assets/www} ./platforms/ios/{build,www}",
"build": "rollup --config",
"build-web": "run-s build build-web:*",
"build-web:copy-dist": "cpx \"./dist/**/*\" ./www/dist/ --verbose",
"build-web:vendor-copy": "vendor-copy",
"serve": "npm-run-all build-web --parallel serve:*",
"serve:liveserver": "live-server www --no-browser --port=8080",
"serve:watch-src": "npm run build -- --watch",
"serve:watch-dist": "npm run build-web:copy-dist -- --watch",
"android": "run-s build-web android:*",
"android:prepare": "cordova prepare",
"android:run": "cordova run android",
"ios": "run-s build-web ios:*",
"ios:prepare": "cordova prepare",
"ios:run": "cordova run ios",
"tools-clean-deps": "rm -rf ./bower_components/ ./node_modules/"
},
"dependencies": {
"asmcrypto.js": "2.3.2",
"benchmark": "2.1.4",
"cordova-android": "8.1.0",
"cordova-ios": "5.1.1",
"core-js": "2.6.11",
"crypto-js": "4.0.0",
"js-nacl": "1.3.2",
"libsodium-wrappers": "0.7.6",
"lodash": "4.17.21",
"node-forge": "0.9.1",
"sjcl": "1.0.8",
"tweetnacl": "1.0.3",
"webcrypto-liner": "1.2.0"
},
"devDependencies": {
"bower": "1.8.8",
"cordova": "9.0.0",
"cpx": "1.5.0",
"live-server": "1.2.1",
"node-webcrypto-ossl": "2.1.0",
"npm-run-all": "4.1.5",
"platform": "1.3.5",
"rollup": "2.10.0",
"rollup-watch": "4.3.1",
"shx": "0.3.2",
"vendor-copy": "2.0.0"
},
"cordova": {
"platforms": [
"android",
"ios"
]
},
"vendorCopy": [
{
"from": "./bower_components/forge/dist/forge.min.js",
"to": "./www/vendor/forge.js"
},
{
"from": "./node_modules/crypto-js/crypto-js.js",
"to": "./www/vendor/crypto-js.js"
},
{
"from": "./bower_components/libsodium.js/dist/browsers/sodium.js",
"to": "./www/vendor/sodium.js"
},
{
"from": "./node_modules/benchmark/benchmark.js",
"to": "./www/vendor/benchmark.js"
},
{
"from": "./node_modules/core-js/client/shim.min.js",
"to": "./www/vendor/corejs-shim.js"
},
{
"from": "./node_modules/asmcrypto.js/asmcrypto.all.es5.js",
"to": "./www/vendor/asmcrypto.js"
},
{
"from": "./node_modules/lodash/lodash.js",
"to": "./www/vendor/lodash.js"
},
{
"from": "./node_modules/js-nacl/lib/nacl_factory.js",
"to": "./www/vendor/js-nacl_factory.js"
},
{
"from": "./node_modules/platform/platform.js",
"to": "./www/vendor/platform.js"
},
{
"from": "./node_modules/sjcl/sjcl.js",
"to": "./www/vendor/sjcl.js"
},
{
"from": "./node_modules/tweetnacl/nacl-fast.min.js",
"to": "./www/vendor/nacl-fast.js"
},
{
"from": "./node_modules/webcrypto-liner/build/webcrypto-liner.shim.js",
"to": "./www/vendor/webcrypto-liner.shim.js"
}
]
}