-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
91 lines (91 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
90
91
{
"name": "@originjs/crypto-js-wasm",
"version": "1.1.1",
"description": "An alternative to crypto-js implemented with WebAssembly and ESM",
"main": "lib/index.js",
"files": [
"lib",
"types"
],
"scripts": {
"build": "npm run clean && node build/build.js",
"clean": "rimraf lib",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint src test",
"lint-fix": "eslint --fix src test"
},
"types": "types/index.d.ts",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"author": {
"name": "peteralfredlee"
},
"repository": {
"type": "git",
"url": "https://github.com/originjs/crypto-js-wasm"
},
"bugs": {
"url": "https://github.com/originjs/crypto-js-wasm/issues"
},
"license": "MulanPSL2",
"keywords": [
"security",
"crypto",
"WebAssembly",
"WASM",
"Hash",
"MD5",
"SHA1",
"SHA-1",
"SHA256",
"SHA-256",
"RC4",
"Rabbit",
"AES",
"DES",
"PBKDF2",
"HMAC",
"OFB",
"CFB",
"CTR",
"CBC",
"Base64"
],
"devDependencies": {
"@babel/core": "^7.6.3",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"babel-jest": "^24.9.0",
"chalk": "^2.4.2",
"crypto-js": "^4.1.1",
"eslint": "^8.21.0",
"husky": "^3.0.8",
"jest": "^27.5.1",
"lint-staged": "^9.4.2",
"ora": "^4.0.2",
"pre-commit": "^1.2.2",
"rimraf": "^3.0.0",
"rollup": "^2.77.2",
"terser": "^4.3.8",
"zlib": "^1.0.5"
},
"dependencies": {
"add": "^2.0.6",
"global": "^4.4.0",
"pako": "^2.0.4"
}
}