-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "@kanamone/id2",
"version": "1.0.0",
"description": "the ID converter that can convert between IDs with different orders and character types and unique numeric sequences.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build",
"release": "changeset publish"
},
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"bin": "lib/cli.js",
"files": [
"lib"
],
"keywords": [
"id"
],
"author": "AOKI Yuto <[email protected]>",
"homepage": "https://github.com/kanamone/id2",
"license": "MIT",
"engines": {
"node": ">=10.4.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.2.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}