-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.63 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
{
"name": "@smartive/es-model",
"version": "0.0.0-development",
"description": "Annotate your datastructure to generate an elasticsearch index template",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"clean": "del-cli ./build ./coverage",
"build": "npm run clean && tsc -p ./config/tsconfig.build.json",
"develop": "npm run clean && tsc -p .",
"lint": "tslint -c ./tslint.json -p ./config/tsconfig.build.json",
"test": "npm run lint && npm run clean && jest -c ./jest.json",
"test:watch": "npm run clean && jest -c ./jest.json --watch",
"typedoc": "del-cli ./docs && typedoc --ignoreCompilerErrors --out ./docs --mode file --tsconfig ./config/tsconfig.build.json ./src/",
"semantic-release": "semantic-release"
},
"engines": {
"node": ">=10",
"npm": "*"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/smartive/es-model.git"
},
"keywords": [
"elasticsearch"
],
"author": "Nicola Marcacci Rossi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartive/es-model/issues"
},
"homepage": "https://github.com/smartive/es-model#readme",
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@smartive/tslint-config": "^7.0.1",
"@types/jest": "^24.0.17",
"del-cli": "^2.0.0",
"jest": "^24.8.0",
"semantic-release": "^15.13.18",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tsutils": "^3.14.1",
"typedoc": "^0.24.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": "3.x || 4.x || 5.x"
}
}