-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.57 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": "@csquare/c2id",
"version": "0.1.1",
"description": "Generate base62-encoded unique identifiers",
"keywords": [
"unique",
"identifier",
"crypto"
],
"homepage": "https://github.com/csquare-ai/c2id#readme",
"bugs": {
"url": "https://github.com/csquare-ai/c2id/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": "Mathieu Bour <[email protected]> (https://github.com/mathieu-bour)",
"contributors": [],
"files": [
"dist/**"
],
"main": "dist/cjs/c2id.js",
"module": "dist/esm/c2id.js",
"types": "dist/types/c2id.d.ts",
"repository": "github:csquare-ai/c2id",
"scripts": {
"prepare": "npx is-ci || husky install",
"clean": "rimraf dist",
"format": "prettier --write **/*.{ts,tsx,json,yaml,yml,md}",
"format:check": "prettier --check **/*.{ts,tsx,yaml,yml,md}",
"test": "jest",
"test:cov": "jest --coverage",
"build": "run-p build:*",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@csquare/random-bytes-seed": "^0.1.3",
"base-x": "^3.0.8"
},
"devDependencies": {
"@csquare/prettier-config": "^1.1.2",
"@types/jest": "^26.0.23",
"@types/node": "^15.6.1",
"husky": "^6.0.0",
"jest": "^27.0.1",
"lint-staged": "^10.5.4",
"npm": "^7.14.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"standard-commit": "^4.2.4",
"ts-jest": "^27.0.1",
"typescript": "^4.3.2"
},
"prettier": "@csquare/prettier-config"
}