-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.89 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
{
"name": "flattenizer",
"description": "Small library for flattening and unflattening objects.",
"version": "1.1.3",
"author": "Sean Hellebusch <[email protected]>",
"bugs": {
"url": "https://github.com/sahellebusch/flattenizer/issues"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.21.5",
"@microsoft/api-extractor": "^7.34.4",
"@size-limit/preset-small-lib": "^8.2.4",
"husky": "^8.0.3",
"np": "^8.0.4",
"size-limit": "^8.2.4",
"tsdx": "^0.14.1",
"tslib": "^2.5.0",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=10"
},
"files": [
"dist",
"src"
],
"homepage": "https://github.com/sahellebusch/flattenizer#readme",
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"keywords": [
"flatten",
"unflatten"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/flattenizer.esm.js",
"types": "dist/index.d.ts",
"peerDependencies": {},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sahellebusch/flattenizer.git"
},
"scripts": {
"analyze": "size-limit --why",
"build": "tsdx build",
"lint": "tsdx lint",
"lint:fix": "tsdx lint --fix",
"docs:extract": "api-extractor run --local --verbose",
"docs:markdown": "api-documenter markdown -i api -o docs",
"docs:generate": "npm run docs:extract && npm run docs:markdown",
"postbuild": "api-extractor run --local --verbose",
"prepare": "tsdx build",
"release": "np",
"size": "size-limit",
"start": "tsdx watch",
"test": "tsdx test"
},
"size-limit": [
{
"path": "dist/flattenizer.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/flattenizer.esm.js",
"limit": "10 KB"
}
],
"typings": "dist/index.d.ts"
}