-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "@yuzu441/is-ulid",
"version": "1.2.0",
"description": "The ulid validation of class-validation",
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"repository": "ssh://[email protected]/yuzu441/is-ulid.git",
"author": "yuzu441",
"license": "MIT",
"homepage": "https://github.com/yuzu441/is-ulid",
"bugs": {
"url": "https://github.com/yuzu441/is-ulid/issues"
},
"scripts": {
"build": "rollup -c",
"prepublish": "npm run build",
"typecheck": "tsc --noEmit -p .",
"test": "jest",
"format": "prettier --write ."
},
"keywords": [
"validation",
"ulid"
],
"devDependencies": {
"@types/jest": "29.5.13",
"@types/rollup-plugin-sourcemaps": "0.5.0",
"@yuzu441/prettier-config": "1.2.1",
"class-validator": "^0.14.0",
"husky": "4.3.8",
"jest": "29.7.0",
"prettier": "2.8.8",
"pretty-quick": "3.1.3",
"rollup": "3.19.1",
"rollup-plugin-sourcemaps": "0.6.3",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.34.1",
"ts-jest": "29.2.5",
"typescript": "4.9.5"
},
"peerDependencies": {
"class-validator": ">=0.14.0"
}
}