-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 878 Bytes
/
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
{
"name": "month-list",
"version": "1.0.6",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/pret-a-porter/month-list.git",
"author": "Maksim Sharipov <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"postbuild": "size-limit",
"prebuild": "rm -rf lib",
"prepare": "npm run build",
"test": "jest --no-cache"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^5.0.3",
"@types/jest": "^27.0.1",
"jest": "^27.1.0",
"size-limit": "^5.0.3",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
},
"files": [
"lib"
],
"bugs": {
"url": "https://github.com/pret-a-porter/month-list/issues"
},
"engines": {
"node": ">= 10"
},
"size-limit": [
{
"path": "lib/index.js",
"limit": "300B",
"webpack": false
}
]
}