-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.05 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
{
"name": "@mizdra/strictly-typed-event-target",
"description": "This is a strictly-typed version of `EventTarget`",
"version": "2.0.0",
"repository": "https://github.com/mizdra/strictly-typed-event-target.git",
"author": "mizdra <pp.mizdra@gmail.com>",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"eventtarget",
"event",
"typescript"
],
"files": [
"src",
"dist"
],
"main": "dist/umd/index.js",
"module": "dist/esm/index.js",
"sideEffects": false,
"scripts": {
"start": "node dist/index.js",
"prebuild": "rimraf dist",
"build": "run-s build:umd build:esm",
"build:umd": "tsc -p tsconfig.src.json --module UMD --outDir dist/umd",
"build:esm": "tsc -p tsconfig.src.json --module ESNext --outDir dist/esm",
"dev": "ts-node src/index.ts",
"check": "run-p -l -c 'check:tsc --pretty' 'check:eslint --color' check:prettier",
"check:eslint": "eslint '{src,test,test-type}/**/*.{ts,tsx}'",
"check:tsc": "tsc -p tsconfig.src.json --noEmit",
"check:prettier": "prettier -l 'src/**/*.{ts,tsx}'",
"test": "run-p -l -c 'test:type --pretty' 'test:jest --colors'",
"test:type": "tsc -p tsconfig.test-type.json --noEmit",
"test:jest": "jest"
},
"prettier": "@mizdra/prettier-config-mizdra",
"renovate": {
"extends": ["github>mizdra/renovate-config-mizdra:default.json5"]
},
"devDependencies": {
"@mizdra/eslint-config-mizdra": "^1.2.0",
"@mizdra/prettier-config-mizdra": "^1.0.0",
"@types/jest": "^27.5.2",
"@types/node": "^18.18.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"prettier": "2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {}
}