-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 2.03 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": "routemamba",
"version": "v5.0.4",
"description": "Routemamba is a js library to develop most customizable single page web applications easily.",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "npx rollup -c",
"dist": "npm run build",
"clean": "del ./dist",
"prepare": "husky install",
"watch": "rollup -c rollup.config.js -w",
"serve": "npm run build && node webpack-dev-server.js",
"lint": "eslint --fix --ext .js,.ts src"
},
"repository": {
"type": "git",
"url": "https://github.com/rezwanahmodsami/routemamba.git"
},
"keywords": [
"routemamba",
"routemambajs"
],
"author": "Rezwan ahmod sami",
"license": "MIT",
"bugs": {
"url": "https://github.com/rezwanahmodsami/routemamba/issues"
},
"homepage": "https://github.com/rezwanahmodsami/routemamba#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"files": [
"dist/"
],
"lint-staged": {
"**/*": "npx prettier --write \"**/*.{js,ts}\" --ignore-unknown "
},
"unpkg": "dist/routemamba.min.js",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@types/jest": "^29.2.2",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"concurrently": "^7.5.0",
"del-cli": "^5.0.0",
"eslint": "^8.41.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.2.2",
"puppeteer": "^22.12.1",
"rollup": "^2.79.1",
"rollup-plugin-license": "^3.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"typescript": "^5.0.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
}
}