forked from jquery/sizzle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.96 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
{
"name": "sizzle",
"title": "Sizzle",
"description": "A pure-JavaScript, bottom-up CSS selector engine designed to be easily dropped in to a host library.",
"version": "2.2.0-pre",
"homepage": "http://sizzlejs.com",
"main": "dist/sizzle.js",
"files": [
"AUTHORS.txt",
"LICENSE.txt",
"dist/sizzle.js",
"dist/sizzle.min.js",
"dist/sizzle.min.map"
],
"author": {
"name": "jQuery Foundation and other contributors",
"url": "https://github.com/jquery/sizzle/blob/master/AUTHORS.txt"
},
"repository": {
"type": "git",
"url": "https://github.com/jquery/sizzle.git"
},
"bugs": {
"url": "https://github.com/jquery/sizzle/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jquery/sizzle/blob/master/LICENSE.txt"
}
],
"dependencies": {},
"devDependencies": {
"benchmark": "1.0.0",
"commitplease": "1.10.1",
"domReady": "git://github.com/requirejs/domReady.git",
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-compare-size": "0.4.0",
"grunt-contrib-jshint": "0.10.0",
"grunt-contrib-qunit": "0.5.2",
"grunt-contrib-uglify": "0.5.1",
"grunt-contrib-watch": "0.6.1",
"grunt-git-authors": "1.2.0",
"grunt-jscs": "0.6.2",
"grunt-jsonlint": "1.0.4",
"grunt-karma": "0.8.3",
"grunt-npmcopy": "0.1.0",
"gzip-js": "0.3.2",
"jquery": "1.9.1",
"karma": "0.12.24",
"karma-browserstack-launcher": "0.1.1",
"karma-chrome-launcher": "0.1.4",
"karma-firefox-launcher": "0.1.3",
"karma-html2js-preprocessor": "0.1.0",
"karma-phantomjs-launcher": "0.1.4",
"karma-qunit": "0.1.4",
"load-grunt-tasks": "0.6.0",
"qunitjs": "1.15.0",
"requirejs": "2.1.14",
"text": "git://github.com/requirejs/text.git"
},
"scripts": {
"build": "npm install && grunt",
"start": "grunt start",
"test": "grunt test"
},
"keywords": [
"sizzle",
"javascript",
"CSS",
"selector",
"jquery"
]
}