-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
67 lines (67 loc) · 1.84 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
{
"name": "jscrypto",
"version": "1.0.3",
"main": "./index.js",
"author": "Izumi Hoshino <rindo.hinase@gmail.com>",
"license": "MIT",
"description": "crypto-js enhancement for modern js environment",
"homepage": "https://github.com/Hinaser/jscrypto/blob/master/API.md",
"keywords": [
"crypt",
"crypto",
"cipher",
"hash",
"MD5",
"SHA1",
"SHA256",
"SHA512",
"HMAC-SHA1",
"HMAC-SHA256",
"AES",
"DES",
"Triple-DES",
"OpenSSL",
"GCM",
"GMAC",
"CCM",
"CBC-MAC"
],
"repository": {
"type": "git",
"url": "https://github.com/Hinaser/jscrypto.git"
},
"bugs": "https://github.com/Hinaser/jscrypto/issues",
"scripts": {
"test": "mocha --enable-source-maps ./test/specs/",
"build": "webpack --config webpack.dev.js",
"build:prod": "webpack --config webpack.prod.es5.js && node bin/pre_publish.js && yarn tsc && yarn build:es6",
"build:es6": "tsc --project tsconfig.json --allowJS false --declaration --declarationDir ./dist/es6",
"tsc": "tsc --project tsconfig.es5.json --emitDeclarationOnly --declaration --declarationDir ./dist --allowJS false",
"postinstall": "patch-package"
},
"bin": {
"jscrypto": "bin/cli.js"
},
"browser": {
"crypto": false
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.8.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^30.4.1",
"expect.js": "^0.3.1",
"fork-ts-checker-webpack-plugin": "^5.1.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"parallel-webpack": "^2.6.0",
"patch-package": "^6.4.7",
"terser-webpack-plugin": "^4.2.0",
"ts-loader": "^8.0.18",
"typescript": "^4.0.2",
"webpack": "5.27.0",
"webpack-cli": "^4.5.0"
}
}