-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.41 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
{
"name": "@kemuridama/aes-cmac",
"version": "0.0.2",
"description": "A TypesScript implementation of the AES-CMAC algorithm (NIST 800-38B / RFC 4493).",
"repository": {
"type": "git",
"url": "https://github.com/kemuridama/aes-cmac.git"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"test": "jest",
"clean": "rm -rf dist",
"lint": "run-p lint:*",
"lint:eslint": "eslint --ext .ts src",
"lint:prettier": "prettier --check '**/*.(ts|js)'",
"prebuild": "npm run clean",
"build": "run-p build:*",
"build:cjs": "esbuild src/index.ts --platform=node --format=cjs --bundle --outfile=dist/cjs/index.js",
"build:esm": "esbuild src/index.ts --platform=node --format=esm --bundle --outfile=dist/esm/index.js",
"build:types": "tsc -p ./tsconfig.build.json"
},
"author": "Ryo Ochiai <[email protected]> (https://kemuridama.jp)",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.4.3",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"esbuild": "^0.15.9",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}