-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 1.94 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "sla-ts",
"version": "0.0.8",
"description": "SLA4API Schema model in TypeScript",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
"files": [
"dist/",
"src/"
],
"repository": {
"type": "git",
"url": "https://github.com/metadevpro/sla-ts.git"
},
"scripts": {
"clean": "rimraf dist",
"build": "rimraf dist && npm run lint && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"build:w": "tsc -p tsconfig.json -w",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"prepare": "npm run build",
"jest": "jest",
"test:tdd": "jest --watch",
"test": "jest",
"test:ci": "jest",
"cover:ci": "nyc npm test",
"cover": "nyc npm test",
"snyk": "npx snyk test",
"cli": "ts-node src/cli/index.ts"
},
"keywords": [
"sla4api",
"sla",
"openapi"
],
"author": "Pedro J. Molina, Metadev S.L.",
"license": "MIT",
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"node_modules",
"typings",
"**/*.spec.ts",
"**/*.d.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"text"
],
"all": true
},
"dependencies": {
"@colors/colors": "^1.5.0",
"yaml": "^2.1.1"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.2",
"jest-teamcity": "^1.11.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typescript": "4.7.4"
}
}