This repository was archived by the owner on Feb 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.48 KB
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
{
"name": "oops-error",
"version": "2.4.0",
"description": "",
"main": "./dist/lib/index.js",
"scripts": {
"test": "mocha -R spec --require ts-node/register --extension ts --recursive ./test/*.unit.test.ts",
"tdd": "mocha -R dot --require ts-node/register --extension ts --recursive ./test/*.unit.test.ts --watch",
"build": "rm -rf dist dist && tsc",
"ts": "ts-node lib/",
"lint": "tslint --project .",
"prepublishOnly": "npm run ci",
"format": "prettier --write ./lib/**/*.ts ./test/**/*.ts package.json",
"check-format": "prettier -l ./lib/**/*.ts ./test/**/*.ts package.json",
"ci": "npm run build && npm run test",
"precommit": "npm run lint && npm run ci",
"prepush": "npm run check-format && npm run lint && npm run ci"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"chai": "^4.3.7",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"prettier": "^2.8.1",
"sinon": "^15.0.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.4"
},
"files": [
"dist/lib",
"tsconfig.json"
],
"types": "./dist/lib/index.d.ts",
"module": "./dist/lib/index.js",
"dependencies": {
"uuid": "^9.0.0"
}
}