-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·68 lines (68 loc) · 1.68 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
{
"name": "menu-breaker",
"version": "2.2.1",
"description": "Break HTML menu on resize",
"author": "Jakub Biesiada",
"license": "MIT",
"main": "lib/menu-breaker.cjs.js",
"module": "lib/menu-breaker.esm.js",
"types": "lib/index.d.ts",
"scripts": {
"release": "rimraf lib/* && npm run prettier && npm run lint && npm run build",
"build": "rollup -c",
"test": "jest --coverage",
"watch": "npm run build -- --watch",
"lint": "eslint 'src/**/*.ts' --fix",
"prettier": "prettier --write 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "https://github.com/menu-breaker-js/menu-breaker.js.git"
},
"keywords": [
"JavaScript",
"jQuery",
"menu",
"switch",
"responsive",
"mobile"
],
"bugs": {
"url": "https://github.com/menu-breaker-js/menu-breaker.js/issues"
},
"homepage": "https://github.com/menu-breaker-js/menu-breaker.js#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^8.0.0",
"@types/jest": "^25.2.3",
"@types/jquery": "^3.3.38",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jquery": "^3.5.1",
"lint-staged": "^10.2.4",
"prettier": "^2.0.5",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.1",
"ts-jest": "^26.0.0",
"typescript": "^3.9.3"
},
"jest": {
"transform": {
"^.+\\.ts?$": "ts-jest"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"npm run prettier",
"npm run lint"
]
}
}