106 lines
2.5 KiB
JSON
106 lines
2.5 KiB
JSON
{
|
|
"name": "qunit",
|
|
"title": "QUnit",
|
|
"description": "An easy-to-use JavaScript Unit Testing framework.",
|
|
"version": "2.9.2",
|
|
"homepage": "https://qunitjs.com",
|
|
"author": {
|
|
"name": "jQuery Foundation and other contributors",
|
|
"url": "https://github.com/qunitjs/qunit/blob/2.9.2/AUTHORS.txt"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/qunitjs/qunit.git"
|
|
},
|
|
"keywords": [
|
|
"testing",
|
|
"unit",
|
|
"jquery"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/qunitjs/qunit/issues"
|
|
},
|
|
"license": "MIT",
|
|
"bin": {
|
|
"qunit": "bin/qunit.js"
|
|
},
|
|
"files": [
|
|
"bin/",
|
|
"src/cli/",
|
|
"qunit/qunit.js",
|
|
"qunit/qunit.css",
|
|
"LICENSE.txt"
|
|
],
|
|
"main": "qunit/qunit.js",
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"dependencies": {
|
|
"commander": "2.12.2",
|
|
"js-reporters": "1.2.1",
|
|
"resolve": "1.9.0",
|
|
"node-watch": "0.6.0",
|
|
"minimatch": "3.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"async": "2.6.0",
|
|
"babel-core": "6.26.0",
|
|
"babel-plugin-external-helpers": "6.22.0",
|
|
"babel-preset-env": "1.6.1",
|
|
"co": "4.6.0",
|
|
"commitplease": "3.1.0",
|
|
"es6-promise": "^4.2.5",
|
|
"eslint-config-jquery": "1.0.1",
|
|
"eslint-plugin-html": "4.0.1",
|
|
"eslint-plugin-node": "^8.0.1",
|
|
"eslint-plugin-qunit": "3.2.0",
|
|
"execa": "0.8.0",
|
|
"fixturify": "0.3.4",
|
|
"fs-extra": "5.0.0",
|
|
"grunt": "1.0.3",
|
|
"grunt-cli": "1.2.0",
|
|
"grunt-concurrent": "2.3.1",
|
|
"grunt-contrib-connect": "1.0.2",
|
|
"grunt-contrib-copy": "1.0.0",
|
|
"grunt-contrib-qunit": "3.1.0",
|
|
"grunt-contrib-watch": "1.1.0",
|
|
"grunt-coveralls": "2.0.0",
|
|
"grunt-eslint": "20.1.0",
|
|
"grunt-git-authors": "3.2.0",
|
|
"grunt-istanbul": "0.8.0",
|
|
"grunt-rollup": "8.2.0",
|
|
"grunt-search": "0.1.8",
|
|
"load-grunt-tasks": "3.5.2",
|
|
"npm-reporter": "file:./test/cli/fixtures/npm-reporter",
|
|
"proxyquire": "1.8.0",
|
|
"requirejs": "2.3.5",
|
|
"rollup-plugin-babel": "3.0.2",
|
|
"rollup-plugin-node-resolve": "^3.4.0",
|
|
"semver": "5.4.1"
|
|
},
|
|
"scripts": {
|
|
"build": "grunt build",
|
|
"dev": "grunt watch",
|
|
"test": "grunt && bin/qunit.js test/cli/*.js",
|
|
"test:main": "grunt",
|
|
"test:cli": "grunt build && bin/qunit.js test/cli/*.js",
|
|
"coverage": "grunt coverage"
|
|
},
|
|
"commitplease": {
|
|
"components": [
|
|
"All",
|
|
"Assert",
|
|
"Build",
|
|
"CLI",
|
|
"CSS",
|
|
"Core",
|
|
"Docs",
|
|
"Dump",
|
|
"HTML Reporter",
|
|
"Readme",
|
|
"Test",
|
|
"Tests"
|
|
]
|
|
}
|
|
}
|