-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.14 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
91
92
93
94
95
{
"version": "0.2.5",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "bash ./build.sh",
"test": "tsdx test",
"lint": "eslint ./src ./test --ext .js,.ts",
"lint-fix": "eslint ./src ./test --ext .js,.ts --fix",
"prepare": "bash ./build.sh",
"size": "size-limit",
"analyze": "size-limit --why"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"name": "utilzed",
"author": "Wilson Lim",
"module": "dist/index.esm.js",
"size-limit": [
{
"path": "dist/index.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/index.esm.js",
"limit": "10 KB"
},
{
"path": "dist/promise.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/promise.esm.js",
"limit": "10 KB"
},
{
"path": "dist/timeconvert.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/timeconvert.esm.js",
"limit": "10 KB"
},
{
"path": "dist/validation.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/validation.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^4.9.1",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-promise": "^4.2.1",
"flowgen": "^1.13.0",
"husky": "^4.3.8",
"size-limit": "^4.9.1",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wilsonshakespeare/utilzed.git"
},
"bugs": {
"url": "https://github.com/wilsonshakespeare/utilzed/issues"
}
}