-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
79 lines (79 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
73
74
75
76
77
78
79
{
"name": "time-to",
"version": "1.3.1",
"description": "Countdown timer and digital clock",
"main": "jquery.time-to.js",
"scripts": {
"start": "npm run lint && npm run build",
"lint": "npx eslint jquery.time-to.js",
"build": "npx uglifyjs jquery.time-to.js -o jquery.time-to.min.js --comments",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lexxus/jq-timeTo.git"
},
"keywords": [
"jquery-plugin",
"ecosystem:jquery",
"timer",
"clock"
],
"author": "Oleksii Teterin",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lexxus/jq-timeTo/issues"
},
"homepage": "http://lexxus.github.io/jq-timeTo/",
"devDependencies": {
"eslint-config-airbnb-base": "^9.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint": "^5.16.0",
"uglify-js": "^3.5.12"
},
"peerDependencies": {
"jquery": "^3.4.1"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": false,
"jquery": true,
"node": false
},
"globals": {
"define": true,
"module": true,
"require": true,
"jQuery": true
},
"extends": "airbnb-base",
"rules": {
"comma-dangle": 0,
"func-names": 0,
"global-require": 0,
"indent": [
2,
4
],
"max-len": [
1,
125
],
"no-param-reassign": 0,
"no-use-before-define": 0,
"no-var": 0,
"object-shorthand": 0,
"one-var": [
2,
{
"uninitialized": "always"
}
],
"one-var-declaration-per-line": 0,
"prefer-arrow-callback": 0,
"prefer-rest-params": 0,
"prefer-template": 0
}
}
}