forked from chaijs/chai-as-promised
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.03 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
76
77
78
79
{
"name": "chai-promised",
"version": "1.0.7",
"description": "Extends Chai with assertions about promises.",
"keywords": [
"chai",
"chai-plugin",
"browser",
"async",
"testing",
"assertions",
"promises",
"promises-aplus"
],
"homepage": "https://github.com/ramanarupa/chai-promised",
"repository": {
"type": "git",
"url": "[email protected]:ramanarupa/chai-promised.git"
},
"contributors": [
{
"name": "Domenic Denicola",
"email": "[email protected]"
},
{
"name": "Rustam Gaifiev",
"email": "[email protected]"
}
],
"license": "WTFPL",
"packageManager": "[email protected]",
"engines": {
"node": ">=20.10.0"
},
"type": "module",
"types": "./dist/chai-promised.d.ts",
"main": "./dist/chai-promised.js",
"module": "./dist/chai-promised.js",
"files": [
"/dist/**/*",
"README.md"
],
"dependencies": {
"chai": "^5.1.1",
"check-error": "^2.1.1"
},
"peerDependencies": {
"chai": ">= 5"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/chai": "^4.3.17",
"@types/check-error": "^1.0.3",
"@types/mocha": "^10.0.7",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "8.0.0-alpha.14",
"eslint": "^9.8.0",
"eslint-config-google": "^0.14.0",
"mocha": "^10.7.0",
"mochawesome": "^7.1.3",
"rimraf": "^6.0.1",
"rollup": "^4.20.0",
"rollup-plugin-copy": "^3.5.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.4"
},
"scripts": {
"lint": "eslint \"./src/*.ts\"",
"lint:fix": "eslint \"./src/*.ts\" --fix",
"clean": "rimraf ./dist ./reports ./.nyc_output",
"test": "pnpm run clean && ts-mocha -p test/tsconfig.json test/index.ts --reporter mochawesome --reporter-options reportDir=reports",
"build": "pnpm run clean && rollup -c rollup.config.js"
}
}