-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.18 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
53
54
55
56
57
{
"name": "dxid",
"version": "2.2.1",
"description": "A better and safer way to display your primary keys in urls or to the users",
"bin": "./index.js",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"run": {
"dxid": "./index.js"
},
"scripts": {
"build": "node src/esbuild.js",
"prepublishOnly": "npm run build",
"id": "./index.js",
"dxid": "./index.js",
"test": "ava",
"eslint": "npx eslint src --fix"
},
"files": [
"src",
"dist",
"*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tttp/dxid.git"
},
"keywords": [
"id",
"luhn",
"base32",
"base64",
"uuid"
],
"author": "xavier dutoit",
"type": "module",
"license": "MIT",
"bugs": {
"url": "https://github.com/tttp/dxid/issues"
},
"homepage": "https://dxid.tttp.eu",
"devDependencies": {
"ava": "^5.3.1",
"esbuild": "^0.19.2",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"naughty-words": "^1.2.0"
}
}