-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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
{
"name": "@kemuridama/sesame-client",
"version": "0.0.4",
"description": "SESAME (OS2) client for Node.js and CLI tool",
"main": "dist/index.js",
"files": ["dist/"],
"bin": {
"sesame-cli": "bin/sesame-cli"
},
"scripts": {
"test": "jest",
"clean": "rm -rf dist",
"lint": "run-p lint:*",
"lint:eslint": "eslint --ext .ts src",
"lint:prettier": "prettier --check '**/*.(ts|js)'",
"build": "npm run clean && tsc -p ./tsconfig.build.json --outDir ./dist"
},
"author": "Ryo Ochiai <[email protected]> (https://kemuridama.jp)",
"license": "MIT",
"dependencies": {
"@kemuridama/aes-cmac": "0.0.1",
"axios": "^0.21.1",
"yargs": "^17.1.1"
},
"devDependencies": {
"@types/jest": "^27.0.0",
"@types/node": "^16.6.0",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.0",
"ts-jest": "^27.0.4",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
}
}