-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "ctor-ensure",
"author": "BlvckBytes",
"version": "1.0.18",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/BlvckBytes/ctor-ensure.git"
},
"main": "lib/index.js",
"types": "lib",
"files": [
"lib"
],
"keywords": [
"typescript",
"validator",
"decorator",
"constructor",
"ensure",
"template",
"lightweight"
],
"engines": {
"node": ">=12"
},
"scripts": {
"prepublish": "npm run build",
"test:ci": "jest --runInBand --no-cache --coverage --verbose",
"test:watch": "jest --watch",
"lint:check": "eslint --max-warnings 0 --ext .ts src/** test/**",
"size": "size-limit",
"prepare": "husky install",
"install:ci": "rm -rf node_modules && yarn install --frozen-lockfile && cp .env-presets .env",
"build": "tsc -p ."
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"module": "dist/ctor-ensure.esm.js",
"size-limit": [
{
"path": "dist/ctor-ensure.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/ctor-ensure.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^6.0.3",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^4.29.3",
"chai": "^4.3.4",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.1.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.2.5",
"mocha": "^9.1.2",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"size-limit": "^6.0.3",
"ts-jest": "^27.0.6",
"ts-node": "^10.3.0",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
},
"dependencies": {
"dotenv": "^10.0.0",
"reflect-metadata": "^0.1.13"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}