-
Notifications
You must be signed in to change notification settings - Fork 951
/
package.json
85 lines (85 loc) · 2.06 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
80
81
82
83
84
85
{
"title": "Sizzle",
"name": "sizzle",
"version": "2.3.11-pre",
"description": "A pure-JavaScript, bottom-up CSS selector engine designed to be easily dropped in to a host library.",
"keywords": [
"sizzle",
"javascript",
"CSS",
"selector",
"jquery"
],
"homepage": "https://sizzlejs.com",
"author": {
"name": "JS Foundation and other contributors",
"url": "https://github.com/jquery/sizzle/blob/main/AUTHORS.txt"
},
"repository": {
"type": "git",
"url": "https://github.com/jquery/sizzle.git"
},
"bugs": {
"url": "https://github.com/jquery/sizzle/issues"
},
"license": "MIT",
"files": [
"AUTHORS.txt",
"LICENSE.txt",
"dist/sizzle.js",
"dist/sizzle.min.js",
"dist/sizzle.min.map"
],
"main": "dist/sizzle.js",
"dependencies": {},
"devDependencies": {
"benchmark": "2.1.4",
"commitplease": "2.7.10",
"eslint-config-jquery": "2.0.0",
"grunt": "1.5.3",
"grunt-cli": "1.4.3",
"grunt-compare-size": "0.4.2",
"grunt-contrib-qunit": "2.0.0",
"grunt-contrib-uglify": "3.0.1",
"grunt-contrib-watch": "1.0.0",
"grunt-eslint": "21.0.0",
"grunt-git-authors": "3.2.0",
"grunt-jsonlint": "1.1.0",
"grunt-karma": "2.0.0",
"grunt-npmcopy": "0.1.0",
"gzip-js": "0.3.2",
"jquery": "1.9.1",
"karma": "1.3.0",
"karma-browserstack-launcher": "1.3.0",
"karma-chrome-launcher": "2.2.0",
"karma-firefox-launcher": "1.2.0",
"karma-html2js-preprocessor": "1.1.0",
"karma-phantomjs-launcher": "1.0.4",
"karma-qunit": "1.2.1",
"load-grunt-tasks": "3.5.2",
"phantomjs-prebuilt": "2.1.15",
"qunitjs": "1.23.1",
"requirejs": "2.3.5",
"requirejs-domready": "2.0.3",
"requirejs-text": "2.0.15"
},
"scripts": {
"build": "npm install && grunt",
"start": "grunt start",
"test": "grunt && grunt test"
},
"commitplease": {
"components": [
"Misc",
"Docs",
"Tests",
"Build",
"Release",
"Core",
"Tokenize",
"Compile",
"Selector",
"SetDocument"
]
}
}