2012-04-18 20:07:35 +00:00
|
|
|
{
|
2013-10-15 13:51:09 +00:00
|
|
|
"name": "jquery",
|
|
|
|
"title": "jQuery",
|
|
|
|
"description": "JavaScript library for DOM operations",
|
2014-11-03 17:29:16 +00:00
|
|
|
"version": "3.0.0-pre",
|
2013-11-15 22:07:12 +00:00
|
|
|
"main": "dist/jquery.js",
|
2015-11-29 17:41:37 +00:00
|
|
|
"homepage": "https://jquery.com",
|
2013-10-15 13:51:09 +00:00
|
|
|
"author": {
|
|
|
|
"name": "jQuery Foundation and other contributors",
|
|
|
|
"url": "https://github.com/jquery/jquery/blob/master/AUTHORS.txt"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/jquery/jquery.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"jquery",
|
|
|
|
"javascript",
|
2014-04-24 19:38:38 +00:00
|
|
|
"browser",
|
2013-10-15 13:51:09 +00:00
|
|
|
"library"
|
|
|
|
],
|
|
|
|
"bugs": {
|
2014-10-17 05:01:37 +00:00
|
|
|
"url": "https://github.com/jquery/jquery/issues"
|
2013-10-15 13:51:09 +00:00
|
|
|
},
|
2015-05-19 11:05:21 +00:00
|
|
|
"license": "MIT",
|
2013-10-15 13:51:09 +00:00
|
|
|
"dependencies": {},
|
|
|
|
"devDependencies": {
|
2016-01-27 11:54:39 +00:00
|
|
|
"babel-preset-es2015": "6.3.13",
|
|
|
|
"commitplease": "2.3.0",
|
|
|
|
"core-js": "2.0.3",
|
2016-01-27 12:02:58 +00:00
|
|
|
"cross-spawn": "2.1.5",
|
2014-07-17 17:24:37 +00:00
|
|
|
"grunt": "0.4.5",
|
2016-01-27 11:54:39 +00:00
|
|
|
"grunt-babel": "6.0.0",
|
2014-01-26 03:01:57 +00:00
|
|
|
"grunt-cli": "0.1.13",
|
2014-02-21 11:53:00 +00:00
|
|
|
"grunt-compare-size": "0.4.0",
|
2016-01-27 11:54:39 +00:00
|
|
|
"grunt-contrib-jshint": "0.12.0",
|
|
|
|
"grunt-contrib-uglify": "0.11.0",
|
2014-07-17 17:24:37 +00:00
|
|
|
"grunt-contrib-watch": "0.6.1",
|
2016-01-27 11:54:39 +00:00
|
|
|
"grunt-git-authors": "3.1.0",
|
|
|
|
"grunt-jscs": "2.6.0",
|
|
|
|
"grunt-jsonlint": "1.0.7",
|
2016-01-28 23:29:49 +00:00
|
|
|
"grunt-newer": "1.1.1",
|
2014-07-17 16:02:59 +00:00
|
|
|
"grunt-npmcopy": "0.1.0",
|
2014-02-21 11:53:00 +00:00
|
|
|
"gzip-js": "0.3.2",
|
2016-01-28 23:29:49 +00:00
|
|
|
"husky": "0.10.2",
|
2015-08-03 18:28:37 +00:00
|
|
|
"jsdom": "5.6.1",
|
2016-01-27 11:54:39 +00:00
|
|
|
"load-grunt-tasks": "3.4.0",
|
|
|
|
"native-promise-only": "0.8.1",
|
|
|
|
"promises-aplus-tests": "2.1.1",
|
|
|
|
"q": "1.4.1",
|
2015-05-10 23:39:26 +00:00
|
|
|
"qunit-assert-step": "1.0.3",
|
2016-01-29 18:07:28 +00:00
|
|
|
"qunitjs": "1.20.0",
|
2016-01-27 11:54:39 +00:00
|
|
|
"requirejs": "2.1.22",
|
|
|
|
"sinon": "1.17.3",
|
2016-01-11 16:25:36 +00:00
|
|
|
"sizzle": "2.3.0",
|
2016-01-27 11:54:39 +00:00
|
|
|
"strip-json-comments": "2.0.0",
|
2016-01-27 12:02:58 +00:00
|
|
|
"testswarm": "1.1.0"
|
2013-10-15 13:51:09 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2013-11-14 15:17:18 +00:00
|
|
|
"build": "npm install && grunt",
|
|
|
|
"start": "grunt watch",
|
2016-01-28 23:41:04 +00:00
|
|
|
"test": "grunt && grunt test",
|
|
|
|
"precommit": "grunt precommit_lint"
|
2014-12-07 06:46:25 +00:00
|
|
|
},
|
|
|
|
"commitplease": {
|
|
|
|
"components": [
|
|
|
|
"Docs",
|
|
|
|
"Tests",
|
|
|
|
"Build",
|
|
|
|
"Release",
|
|
|
|
"Core",
|
|
|
|
"Ajax",
|
|
|
|
"Attributes",
|
|
|
|
"Callbacks",
|
|
|
|
"CSS",
|
|
|
|
"Data",
|
|
|
|
"Deferred",
|
2015-10-18 15:02:16 +00:00
|
|
|
"Deprecated",
|
2014-12-07 06:46:25 +00:00
|
|
|
"Dimensions",
|
|
|
|
"Effects",
|
|
|
|
"Event",
|
|
|
|
"Manipulation",
|
|
|
|
"Offset",
|
|
|
|
"Queue",
|
|
|
|
"Selector",
|
|
|
|
"Serialize",
|
2015-01-12 03:24:02 +00:00
|
|
|
"Traversing",
|
|
|
|
"Wrap"
|
2014-12-07 06:46:25 +00:00
|
|
|
]
|
2013-10-15 13:51:09 +00:00
|
|
|
}
|
2012-04-18 20:07:35 +00:00
|
|
|
}
|