chai/package.json

64 lines
1.5 KiB
JSON
Raw Normal View History

2011-12-06 13:18:01 +00:00
{
"author": "Jake Luer <jake@alogicalparadox.com>",
2011-12-07 05:25:52 +00:00
"name": "chai",
2011-12-16 11:59:45 +00:00
"description": "BDD/TDD assertion library for node.js and the browser. Test framework agnostic.",
2015-02-09 18:43:58 +00:00
"keywords": [
"test",
"assertion",
"assert",
"testing",
"chai"
],
"homepage": "http://chaijs.com",
"license": "MIT",
"contributors": [
"Jake Luer <jake@alogicalparadox.com>",
"Domenic Denicola <domenic@domenicdenicola.com> (http://domenicdenicola.com)",
"Veselin Todorov <hi@vesln.com>",
"John Firebaugh <john.firebaugh@gmail.com>"
],
2022-11-07 16:35:55 +00:00
"version": "4.3.7",
2011-12-06 13:18:01 +00:00
"repository": {
"type": "git",
"url": "https://github.com/chaijs/chai"
2011-12-06 13:18:01 +00:00
},
2011-12-15 13:07:42 +00:00
"bugs": {
"url": "https://github.com/chaijs/chai/issues"
2011-12-15 13:07:42 +00:00
},
"main": "./index",
"exports": {
".": {
"require": "./index.js",
"import": "./index.mjs"
},
2022-01-25 14:42:22 +00:00
"./*": "./*"
},
2011-12-06 13:18:01 +00:00
"scripts": {
"test": "make test"
2011-12-06 13:18:01 +00:00
},
"engines": {
"node": ">=4"
2011-12-06 13:18:01 +00:00
},
2013-06-17 19:16:55 +00:00
"dependencies": {
2018-01-07 15:32:40 +00:00
"assertion-error": "^1.1.0",
"check-error": "^1.0.2",
"deep-eql": "^4.1.2",
"get-func-name": "^2.0.0",
2022-01-26 13:09:57 +00:00
"loupe": "^2.3.1",
"pathval": "^1.1.1",
2018-01-07 15:32:40 +00:00
"type-detect": "^4.0.5"
2013-06-17 19:16:55 +00:00
},
2011-12-15 10:28:16 +00:00
"devDependencies": {
2018-12-14 21:13:41 +00:00
"browserify": "^16.2.3",
"bump-cli": "^1.1.3",
"codecov": "^3.0.0",
"istanbul": "^0.4.3",
2021-03-02 18:17:29 +00:00
"karma": "^6.1.1",
2018-12-14 21:13:41 +00:00
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.0.0",
2021-03-02 18:17:29 +00:00
"karma-mocha": "^2.0.1",
2017-11-04 02:52:09 +00:00
"karma-sauce-launcher": "^1.2.0",
"mocha": "^7.1.2"
2011-12-15 10:28:16 +00:00
}
2011-12-06 13:18:01 +00:00
}