forked from ongteckwu/typeid-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "typeid-ts",
"version": "0.2.7",
"description": "TypeID in Typescript",
"main": "./build/src/index.js",
"types": "./src/index.d.ts",
"exports": "./build/src/index.js",
"bin": {
"typeid": "./build/bin/cli.js"
},
"type": "module",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/sinon": "^10.0.15",
"@types/node": "~18",
"@typescript-eslint/eslint-plugin": "~5.59",
"@typescript-eslint/parser": "~5.59",
"eslint": "~8.38",
"eslint-config-prettier": "~8.8",
"prettier": "~2.8",
"rimraf": "~5.0",
"ts-api-utils": "~0.0.44",
"ts-node": "^10.9.1",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"sinon": "^15.2.0",
"typescript": "~5.0"
},
"dependencies": {
"commander": "^11.0.0",
"tslib": "~2.5",
"uuidv7": "^0.5.2"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"prepublishOnly": "tsc -p tsconfig.json",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "mocha -r ts-node/register ./test/**/*.ts"
},
"keywords": [
"uuid",
"uuidv7",
"typeid",
"type-id"
],
"author": "Ong Teck Wu",
"license": "Apache-2.0"
}