forked from chaijs/chai
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.08 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
{
"author": "Jake Luer <[email protected]>",
"publishConfig": {
"access": "public"
},
"name": "@nightwatch/chai",
"description": "A forked of Chai 5 which adds Promise support in order to work with Nightwatch commands.",
"keywords": [
"test",
"assertion",
"assert",
"testing",
"chai"
],
"homepage": "http://chaijs.com",
"license": "MIT",
"contributors": [
"Jake Luer <[email protected]>",
"Domenic Denicola <[email protected]> (http://domenicdenicola.com)",
"Veselin Todorov <[email protected]>",
"John Firebaugh <[email protected]>"
],
"version": "5.0.3",
"repository": {
"type": "git",
"url": "https://github.com/chaijs/chai"
},
"bugs": {
"url": "https://github.com/chaijs/chai/issues"
},
"main": "./index",
"exports": {
".": {
"require": "./index.js",
"import": "./index.mjs"
},
"./": "./"
},
"scripts": {
"prebuild": "npm run clean",
"build": "browserify --bare --outfile chai.js --standalone chai --entry index.js",
"pretest": "npm run build",
"test": "npm run test-node && npm run test-chrome",
"test-node": "mocha --require ./test/bootstrap/index.js --reporter dot test/*.js test/*.mjs",
"test-chrome": "karma start karma.conf.js --single-run --browsers HeadlessChrome",
"test-firefox": "karma start karma.conf.js --browsers Firefox",
"test-cov": "istanbul cover ./node_modules/.bin/_mocha -- --require ./test/bootstrap/index.js test/*.js test/*.mjs",
"clean": "rm -f chai.js coverage"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"assertion-error": "1.1.0",
"check-error": "1.0.2",
"deep-eql": "4.0.1",
"loupe": "^2.3.7",
"pathval": "1.1.1",
"type-detect": "4.0.8"
},
"devDependencies": {
"browserify": "^17.0.0",
"bump-cli": "^2.3.1",
"codecov": "^3.8.1",
"istanbul": "^0.4.3",
"karma": "^6.1.1",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.0",
"karma-mocha": "^2.0.1",
"karma-sauce-launcher": "^4.3.5",
"mocha": "^9.1.4"
}
}