-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.73 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
{
"name": "@ntix/bind",
"version": "0.0.0-development",
"description": "a small dom binder",
"repository": {
"url": "https://github.com/MrAntix/bind",
"type": "git"
},
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"lint": "eslint . --ext .ts --fix",
"prebuild": "npm run clean && npm run lint",
"build": "tsc",
"build.docs": "typedoc --out docs src --readme docs.md --media dist",
"clean": "shx rm -rf dist",
"test": "jest",
"test.coverage": "jest --coverage",
"test.watch": "jest --watch",
"start": "npm run build.docs && serve docs",
"commit": "git add . && npx git-cz",
"semantic-release": "semantic-release"
},
"keywords": [
"binding",
"dom",
"attributes",
"properties",
"events"
],
"author": "Anthony Johnston <[email protected]> (http://antix.co.uk)",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "~8",
"eslint-plugin-sonarjs": "^0.25.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"semantic-release": "^23.0.8",
"serve": "^14.2.3",
"shx": "^0.3.4",
"ts-jest": "^29.1.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"verbose": false,
"testMatch": [
"**/*.spec.ts"
],
"moduleNameMapper": {
"(.*)\\.js": "$1"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}