-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.88 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
{
"name": "rerror",
"version": "2.0.0",
"description": "rich error",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"browser": "./dist/index.iife.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rollup -c && tsc -d --emitDeclarationOnly --declarationDir dist",
"coverage": "nyc ts-mocha --paths test/test.ts && open-cli coverage/lcov-report/index.html",
"coveralls": "nyc report --reporter text-lcov | coveralls",
"lint": "eslint .",
"mocha": "ts-mocha --paths test/test.ts -R nyan",
"test": "npm run lint ; npm run mocha"
},
"repository": "borisdiakur/rerror",
"keywords": [
"error",
"rich",
"exception",
"verror",
"cause"
],
"author": "Boris Diakur <[email protected]> (https://github.com/borisdiakur)",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@rollup/plugin-typescript": "^6.0.0",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.1",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^10.1.0",
"mocha-lcov-reporter": "1.3.0",
"nyc": "^15.1.0",
"open-cli": "^7.0.1",
"prettier": "^2.1.2",
"rollup": "^2.28.1",
"rollup-plugin-terser": "^7.0.2",
"ts-mocha": "^7.0.0",
"tslib": "^2.0.1",
"typescript": "^4.0.3"
},
"engines": {
"node": ">=0.8.0"
},
"nyc": {
"exclude": [
"test"
],
"reporter": [
"text",
"lcov"
],
"check-coverage": true,
"branches": 80,
"lines": 80,
"functions": 80,
"statements": 80
}
}