forked from renvrant/conditionize.js
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.7 KB
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
{
"name": "conditionize2",
"version": "2.0.1",
"description": "A jQuery plugin for conditional actions like show/hide on elements.",
"main": "jquery.conditionize2.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "./test.sh",
"minify": "./node_modules/.bin/uglifyjs -m --keep-fnames jquery.conditionize2.js > jquery.conditionize2.min.js",
"add_minified": "git add jquery.conditionize2.min.js",
"lint": "./node_modules/.bin/eslint --fix jquery.conditionize2.js test/*.html"
},
"pre-commit": [
"minify",
"add_minified"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rguliev/conditionize2.js.git"
},
"keywords": [
"jquery",
"conditional"
],
"author": "Rustam Guliev <glvrst@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rguliev/conditionize2.js/issues"
},
"homepage": "https://github.com/rguliev/conditionize2.js#readme",
"dependencies": {
"jquery": "*"
},
"devDependencies": {
"eslint": "^5.12.1",
"eslint-config-jquery": "^1.0.1",
"eslint-plugin-html": "^6.0.0",
"jquery1_9": "npm:jquery@1.9.x",
"jquery1_11": "npm:jquery@1.11.x",
"jquery1_12": "npm:jquery@1.12.x",
"jquery2_1": "npm:jquery@2.1.x",
"jquery2_2": "npm:jquery@2.2.x",
"jquery3_0": "npm:jquery@3.0.x",
"jquery3_1": "npm:jquery@3.1.x",
"jquery3_2": "npm:jquery@3.2.x",
"jquery3_3": "npm:jquery@3.3.x",
"jquery3_4": "npm:jquery@3.4.x",
"jquery1_latest": "npm:jquery@1.x",
"jquery2_latest": "npm:jquery@2.x",
"jquery3_latest": "npm:jquery@3.x",
"node-qunit-phantomjs": "^2.1.0",
"pre-commit": "^1.2.2",
"qunit": "^2.9.3",
"uglify-js": "^3.4.9"
}
}