-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "@cryptography/aes",
"description": "High-performance synchronous AES implementation for JavaScript",
"version": "0.1.1",
"author": "Konstantin Darutkin",
"scripts": {
"test": "jest --coverage",
"build": "rm -rf dist/* && rollup -c",
"analyze": "npm run build -- --analyze",
"prepublish": "npm test",
"pretest": "npm run build",
"publish": "npm publish"
},
"devDependencies": {},
"main": "dist/cjs/aes.min.js",
"module": "dist/es/aes.js",
"types": "dist/typings/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/spalt08/cryptography.git",
"directory": "packages/aes"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{ts}": [
"eslint"
]
},
"keywords": [
"aes",
"javascript",
"crypto"
],
"bugs": {
"url": "https://github.com/spalt08/cryptography/issues"
},
"homepage": "https://github.com/spalt08/cryptography/tree/master/packages/aes",
"files": [
"dist/*",
"package.json"
],
"license": "GPL-3.0-or-later"
}