-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
74 lines (74 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
73
74
{
"name": "jquery-syotimer",
"projectName": "SyoTimer",
"version": "3.1.2",
"description": "jquery countdown plugin",
"main": "./build/jquery.syotimer.js",
"types": "./build/jquery.syotimer.d.ts",
"files": [
"build",
"resources"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mrfratello/SyoTimer.git"
},
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c",
"format": "prettier --write \"./source/\"",
"format:check": "prettier --check \"./source/\"",
"eslint": "eslint source/**",
"tslint": "tsc -b --incremental",
"lint": "npm run format:check && npm run tslint && npm run eslint",
"test": "vitest --run",
"test:ui": "vitest --ui",
"release:before": "npm run lint && npm run build && git add .",
"release": "standard-version -a",
"prepare": "husky install"
},
"keywords": [
"countdown",
"jquery",
"plugin"
],
"author": "John Syomochkin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrfratello/SyoTimer/issues"
},
"homepage": "https://mrfratello.github.io/SyoTimer",
"standard-version": {
"scripts": {
"prerelease": "npm run release:before"
}
},
"devDependencies": {
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.6",
"@types/jquery": "3.5.29",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vitest/ui": "1.3.1",
"eslint": "8.56.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"husky": "9.0.11",
"jquery": "3.7.1",
"jsdom": "24.0.0",
"prettier": "3.2.5",
"rollup": "4.12.0",
"rollup-plugin-dts": "6.1.0",
"standard-version": "9.5.0",
"tslib": "2.6.2",
"typescript": "5.3.3",
"vite": "5.1.4",
"vitest": "1.3.1"
},
"peerDependencies": {
"jquery": "^1.12 || ^2.0 || ^3.0"
}
}