forked from pagopa/openapi-codegen-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.72 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
{
"name": "italia-utils",
"version": "4.0.1",
"description": "Tools and utilities for the Digital Citizenship project",
"repository": "https://github.com/teamdigitale/italia-utils",
"author": "https://teamdigitale.governo.it",
"license": "MIT",
"bin": {
"gen-api-models": "dist/index.js"
},
"files": [
"dist/",
"templates/"
],
"scripts": {
"prepublishOnly": "crlf --set=LF dist/*",
"prepublish": "npm run build",
"build": "rimraf dist && tsc",
"version": "npm run build",
"postversion": "git push && git push --tags",
"test": "jest"
},
"dependencies": {
"fs-extra": "^6.0.0",
"italia-ts-commons": "^5.0.1",
"nunjucks": "^3.1.2",
"prettier": "^1.12.1",
"swagger-parser": "^4.1.0",
"swagger-schema-official": "^2.0.0-bab6bed",
"yargs": "^11.1.0"
},
"devDependencies": {
"@types/fs-extra": "^5.0.2",
"@types/jest": "^22.2.3",
"@types/node": "^9.6.6",
"@types/nunjucks": "^3.0.0",
"@types/prettier": "^1.12.0",
"@types/swagger-parser": "^4.0.2",
"@types/yargs": "^11.1.0",
"crlf": "^1.1.1",
"danger": "^3.5.1",
"danger-plugin-digitalcitizenship": "^0.3.1",
"io-ts": "1.8.5",
"jest": "^22.4.3",
"rimraf": "^2.6.2",
"ts-jest": "^22.4.5",
"ts-node": "^6.1.0",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-plugin-prettier": "^1.3.0",
"tslint-sonarts": "^1.7.0",
"typescript": "^2.9.1",
"typestrict": "^0.0.9"
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/__tests__/*.ts"
]
}
}