-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.29 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
{
"name": "stringdate",
"version": "2.0.0",
"description": "A no fuss string date library",
"main": "dist/index.js",
"license": "MIT",
"author": "Allan Hortle",
"keywords": [
"string",
"date"
],
"repository": {
"type": "git",
"url": "git+https://github.com/92green/stringdate.git"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/92green/stringdate/issues"
},
"private": false,
"scripts": {
"build": "yarn tsdx build",
"lint": "yarn tsdx lint src",
"prepublishOnly": "yarn build",
"test": "yarn jest",
"test-all": "yarn lint && yarn test && yarn build",
"watch": "yarn tsdx watch",
"size": "size-limit",
"analyze": "size-limit --why"
},
"dependencies": {
"date-fns": "^2.22.1"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^5.0.1",
"@types/jest": "^26.0.23",
"@types/node": "^16.0.1",
"husky": "^7.0.1",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"size-limit": "^5.0.1",
"ts-jest": "^27.0.3",
"tsdx": "^0.14.1",
"tslib": "^2.2.0",
"typescript": "^4.3.2"
},
"size-limit": [
{
"limit": "6.79KB",
"path": "dist/index.js"
}
],
"husky": {
"hooks": {
"pre-commit": "yarn format-quick"
}
}
}