-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "@santi100a/assertion-lib",
"version": "2.0.4",
"main": "cjs/index.js",
"typings": "cjs/index.d.ts",
"module": "./index.mjs",
"description": "Santi's Assertion Library: Quick and reliable assertions!",
"license": "MIT",
"author": "santi100a <santyrojasprieto9@gmail.com>",
"keywords": [
"assertion",
"type-assertion",
"lightweight",
"es3"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/santi100a"
},
"repository": {
"url": "https://github.com/santi100a/assertion-lib.git",
"type": "git"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "8.50.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"remark-cli": "^12.0.0",
"remark-validate-links": "^12.1.1",
"ts-jest": "^29.1.1",
"typescript": "4.9.5"
},
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"test": "jest",
"lint": "eslint src/**/*.ts tests/**/*.test.ts",
"validate-package-json": "node scripts/validate-package-json.js",
"check-links": "remark --frail .",
"esm-wrapper": "node scripts/esm-wrapper.js",
"test:watch": "jest --watchAll",
"prettify": "prettier --write src/**/*.ts"
}
}