-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.4 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
{
"name": "kinwin",
"version": "1.0.0",
"description": "Modern lightweight DOM manipulation library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist coverage",
"build": "tsc",
"build:prod": "webpack --mode production",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky install",
"prepublishOnly": "npm run clean && npm run build",
"build:docs": "mkdir -p docs/dist && npm run build:prod && cp dist/kinwin.min.js docs/dist/"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typescript": "5.3.3",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4"
},
"keywords": [
"dom",
"manipulation",
"typescript",
"frontend"
],
"author": "Ali Raza",
"license": "MIT",
"engines": {
"node": ">=18.18.0"
}
}