-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (57 loc) · 1.49 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
{
"name": "jqueryannex",
"version": "0.46.0",
"description": "A mixed bag of jQuery extensions to generally streamline development, make code more semantic and provide solutions to everyday problems and tedious standard constructs.",
"authors": ["Sebastian Schlapkohl"],
"license": "MIT",
"repository": "github:oktarintentakel/jqueryannex",
"homepage": "https://github.com/OktarinTentakel/jqueryannex",
"private": false,
"keywords": [
"jquery",
"additions",
"polling",
"lazy loading",
"inheritance",
"preloading",
"string manipulation",
"sane dates"
],
"main": ".src/jquery.annex.js",
"directories": {
"doc": "./doc",
"test": "./test"
},
"__comment__on_engines" : "please use versions noted here for dev, >= is necessary to avoid errors during yarn installation as a dependency",
"engines": {
"node" : ">=12.22.0",
"yarn" : ">=1.22.0"
},
"devDependencies": {
"ava": "^1.0.1",
"browser-env": "^3.2.6",
"gulp": "^3.9.1",
"gulp-ava": "^0.19.0",
"gulp-connect": "^4.2.0",
"gulp-rename": "^1.2.3",
"gulp-shell": "^0.5.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^3.0.2",
"jquery-v1": "jquery/jquery#1.12.4",
"jquery-v2": "jquery/jquery#2.2.4",
"jquery-v3": "jquery/jquery#3.6.1",
"jsdoc": "^3.4.3",
"natives": "^1.1.6",
"run-sequence": "^2.2.1",
"st": "^1.2.2"
},
"dependencies": {
"jquery": "^3.6.1 || ^2.2.4 || ^1.12.4"
},
"resolutions": {
"graceful-fs": "^4.2.10"
},
"ava": {
"require": ["./test/helpers/setup-browserenv.js"]
}
}