-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.69 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.69 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@bhc/ts-tools",
"version": "1.16.2",
"description": "A collection of functionals tools",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"tools",
"typescript"
],
"author": "BHC-IT",
"license": "MIT",
"private": false,
"scripts": {
"start": "npm run build && node dist/index.js",
"dev": "nodemon",
"test": "mocha -r ts-node/register test/**/*.ts",
"test:dev": "nodemon --config ./nodemon.test.json",
"cov": "nyc npm run test",
"cov:html": "nyc --reporter=lcov --reporter=text-summary npm run test",
"build": "npm run clean && tsc",
"clean": "rimraf ./dist",
"doc": "typedoc --excludePrivate --excludeInternal ./src/* --out doc",
"doc:internal": "typedoc --excludeInternal false ./src/* --out internal",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --fix --ext .ts",
"prepublish": "tsc"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.0",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"concurrently": "^7.0.0",
"eslint": "^8.10.0",
"mocha": "^9.2.1",
"mocha-sinon": "^2.1.2",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"sinon": "^13.0.1",
"ts-node": "^10.5.0",
"typedoc": "^0.22.12",
"typescript": "^4.5.5"
}
}