-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.64 KB
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
{
"name": "fns.js",
"version": "0.1.0",
"repository": "https://github.com/fnsjs/fns.js.git",
"license": "MIT",
"author": "Jalal azimi",
"main": "dist/index.js",
"module": "dist/fns.js.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "husky install scripts/husky && tsdx build",
"size": "size-limit",
"lint:package": "sort-package-json",
"analyze": "size-limit --why",
"benchmark": "scripts/benchmark.sh",
"build:prepare": "node scripts/build.js",
"docs:compile": "rimraf docs && typedoc --json ./docs/doc.json"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,html}": [
"prettier --write",
"git add"
],
"package.json": [
"yarn lint:package",
"git add"
]
},
"devDependencies": {
"@size-limit/preset-small-lib": "^4.10.2",
"@types/lodash": "^4.14.168",
"benny": "^3.6.15",
"eslint-plugin-prettier": "^3.4.0",
"glob": "^7.1.7",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"lodash": "^4.17.21",
"size-limit": "^4.10.2",
"sort-package-json": "^1.50.0",
"ts-node": "^9.1.1",
"tsdx": "^0.14.1",
"tslib": "^2.2.0",
"typedoc": "^0.17.7",
"typedoc-plugin-external-module-name": "^4.0.3",
"typedoc-plugin-markdown": "^2.3.1",
"typescript": "^4.2.4"
},
"engines": {
"node": ">=10"
},
"size-limit": [
{
"path": "dist/fns.js.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/fns.js.esm.js",
"limit": "10 KB"
}
]
}