-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.06 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
{
"name": "chai-ts",
"description": "Chai extension with type-aware assertions.",
"author": {
"name": "Marcelo Paternostro",
"email": "mpaternostro@gmail.com"
},
"readme": "README.md",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/m-paternostro/chai-ts"
},
"keywords": [
"chai",
"chai-plugin",
"typescript",
"test",
"assertion",
"async",
"promise",
"type"
],
"version": "0.0.4",
"files": [
"dist"
],
"main": "./dist/lib/src/index.js",
"exports": {
".": "./dist/lib/src/index.js"
},
"scripts": {
"build": "rimraf ./dist && npm run build:ts -- -p tsconfig.build.json",
"build:ts": "tsc",
"build:watch": "npm run build -- --watch",
"test": "ts-mocha --recursive './lib/tests/**/*.test.ts'",
"test:coverage": "rimraf ./coverage && nyc npm run test",
"test:coverage:open": "open ./coverage/report/index.html",
"format:check": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint --ext .ts .",
"lint:fix": "npm run lint -- --fix",
"prevalidate": "npm run build && npm run build:ts && npm run format && npm run lint",
"validate": "npm run test",
"package": "npm run build && rimraf dist/tsconfig.build.tsbuildinfo && npm pack"
},
"dependencies": {
"@types/chai": "^4.3.4",
"chai": "^4.3.7"
},
"optionalDependencies": {
"@types/chai-as-promised": "^7.1.5",
"chai-as-promised": "^7.1.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/mocha": "^10.0.1",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"open": "^9.1.0",
"prettier": "^2.8.3",
"rimraf": "5.0.0",
"sinon": "^15.0.1",
"ts-mocha": "^10.0.0",
"typescript": "4.9.5"
}
}