-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
122 lines (122 loc) · 3.19 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "assertron",
"version": "11.5.2",
"description": "A supplementary assertion library",
"homepage": "https://github.com/unional/assertron",
"bugs": {
"url": "https://github.com/unional/assertron/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/unional/assertron.git"
},
"license": "MIT",
"author": {
"name": "Homa Wong",
"email": "homawong@gmail.com"
},
"sideEffects": false,
"type": "module",
"exports": {
"import": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
},
"require": {
"types": "./cjs/index.d.ts",
"default": "./cjs/index.js"
}
},
"main": "./cjs/index.js",
"module": "./esm/index.js",
"browser": {
"perf_hooks": false
},
"types": "./esm/index.d.ts",
"files": [
"cjs",
"esm",
"ts",
"!**/*.{spec,test,unit,accept,integrate,system,perf,stress}.*"
],
"scripts": {
"build": "run-p build:cjs build:esm build:tslib",
"build:cjs": "tsc -p tsconfig.cjs.json && ncp package.cjs.json cjs/package.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:tslib": "tsc -p tsconfig.tslib.json && ncp package.cjs.json tslib/package.json",
"build:watch": "tsc --watch",
"clean": "rimraf cjs esm coverage lib libm",
"cs": "changeset",
"coverage": "jest --coverage",
"depcheck": "depcheck",
"lint": "eslint --ext=js,ts .",
"prepare": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"nuke": "pnpm clean && rimraf node_modules",
"size": "size-limit",
"test": "jest",
"test:watch": "jest --watch",
"test:type": "tsc",
"release": "changeset publish",
"version": "changeset version",
"verify": "npm-run-all clean -p build test:type depcheck lint coverage -p size",
"watch": "pnpm test:watch"
},
"dependencies": {
"is-promise": "^4.0.0",
"iso-error": "^6.0.0",
"path-equal": "^1.2.5",
"satisfier": "^5.4.2",
"tersify": "^3.11.1",
"type-plus": "^7.6.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@size-limit/preset-small-lib": "^9.0.0",
"@types/jest": "^29.0.0",
"@types/lodash": "^4.14.182",
"@types/ncp": "^2",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"depcheck": "^1.4.3",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-harmony": "^7.1.2",
"husky": "^8.0.1",
"jest": "^29.0.0",
"jest-validate": "^29.0.0",
"jest-watch-suspend": "^1.1.2",
"jest-watch-toggle-config": "^3.0.0",
"jest-watch-typeahead": "^2.0.0",
"lodash": "^4.17.21",
"ncp": "^2.0.0",
"npm-run-all2": "^6.0.0",
"pinst": "^3.0.0",
"rimraf": "^5.0.0",
"size-limit": "^9.0.0",
"ts-jest": "^29.0.0",
"tslib": "^2.4.0",
"typescript": "^5.0.0"
},
"packageManager": "pnpm@8.15.5",
"engines": {
"node": ">= 10"
},
"size-limit": [
{
"path": "./cjs/index.js",
"limit": "15 KB"
},
{
"path": "./esm/index.js",
"limit": "10 KB"
},
{
"path": "./tslib/index.js",
"limit": "15 KB"
}
]
}