-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.6 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
{
"name": "@bhc/Schema-engine",
"version": "0.0.0",
"description": "Schematic engine",
"main": "dist/index.js",
"type": "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 -plugin typedoc-plugin-param-names --excludePrivate --excludeInternal ./src/* --out doc",
"doc:internal": "typedoc -plugin typedoc-plugin-param-names --excludeInternal false ./src/* --out internal",
"prepublish": "tsc"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.1.1",
"@semantic-release/release-notes-generator": "^9.0.2",
"@types/chai": "^4.2.17",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"concurrently": "^6.0.2",
"mocha": "^8.3.2",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.2",
"ts-node": "^9.1.1",
"typedoc": "^0.20.36",
"typedoc-plugin-param-names": "^2.0.0",
"typescript": "^4.2.4"
},
"dependencies": {
"@bhc/ts-tools": "^1.8.0"
}
}