-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2.17 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
{
"name": "contentful-ts-generator",
"version": "0.2.12",
"description": "A CLI & webpack plugin for automatically generating Typescript code based on the content types in your Contentful space.",
"main": "dist/index.js",
"bin": "bin/contentful-ts-generator",
"files": [
"dist/**/*",
"bin/contentful-ts-generator",
"README.md"
],
"scripts": {
"lint": "tslint --project tsconfig.json 'packages/*/src/**/*.ts'",
"fix": "tslint --project tsconfig.json 'packages/*/src/**/*.ts' --fix",
"test": "jest --coverage",
"test-watch": "jest --watch",
"build": "tsc --project tsconfig.dist.json && rsync -avR src/./installer/templates dist",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"clean": "rm -rf dist coverage .nyc_output; tsc --build --clean; rm -rf src/**/tmp dist; true",
"prepack": "yarn run build"
},
"keywords": [
"contentful",
"typescript",
"codegen"
],
"homepage": "https://github.com/watermarkchurch/ts-generators/tree/master/packages/contentful-ts-generator",
"repository": {
"type": "git",
"url": "https://github.com/watermarkchurch/ts-generators.git"
},
"author": "Gordon Burgett (gordon@gordonburgett.net)",
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^5.0.5",
"@types/globby": "^9.1.0",
"@types/inflection": "^1.5.28",
"@types/jest": "^29.0.2",
"@types/nock": "^9.3.1",
"@types/node": "^12.12.6",
"@types/tmp": "0.0.34",
"@types/webpack": "^4.4.25",
"@types/yargs": "^13.0.3",
"contentful": "^7.4.3",
"coveralls": "^3.1.1",
"jest": "^29.0.3",
"nock": "^10.0.6",
"tslint": "^5.12.1",
"tslint-eslint-rules": "^5.4.0",
"tslint-eslint-rules-recommended": "^1.2.0",
"typescript": "^4.8.3"
},
"dependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-typescript": "^7.18.6",
"async-toolbox": "^0.4.2",
"babel-jest": "^29.0.3",
"chalk": "^2.4.2",
"contentful-management": ">=5.7.0",
"fs-extra": "^7.0.1",
"globby": "^9.1.0",
"inflection": "^1.12.0",
"limiter": "^1.1.4",
"tmp": "0.1.0",
"ts-morph": ">=1.3.0",
"yargs": "^13.3.0"
}
}