-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
94 lines (94 loc) · 2.67 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
88
89
90
91
92
93
94
{
"name": "contentful-typescript-codegen",
"description": "Generate TypeScript types from your Contentful environment.",
"license": "MIT",
"author": "Steven Petryk <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/intercom/contentful-typescript-codegen"
},
"resolutions": {
"braces": "3.0.3",
"ansi-regex": "3.0.1",
"minimist": "1.2.6",
"micromatch": "4.0.8"
},
"version": "0.0.1-development",
"main": "dist/contentful-typescript-codegen.js",
"bin": "./dist/contentful-typescript-codegen.js",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --module commonjs && rollup -c rollup.config.ts && chmod +x dist/contentful-typescript-codegen.js",
"commit": "git-cz",
"format": "prettier --write \"**/*.ts\"",
"format:check": "npm run format -- --check",
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"start": "rollup -c rollup.config.ts -w",
"test": "jest --coverage",
"test:ci": "jest --coverage --max-workers=2 --ci",
"test:prod": "npm run lint && npm run test -- --no-cache",
"test:watch": "jest --coverage --watch",
"semantic-release": "semantic-release"
},
"typings": "dist/types/contentful-typescript-codegen.d.ts",
"dependencies": {
"fs-extra": "^9.1.0",
"lodash": "^4.17.21",
"meow": "^9.0.0"
},
"peerDependencies": {
"prettier": ">= 1",
"ts-node": ">= 9.0.0"
},
"peerDependenciesMeta": {
"ts-node": {
"optional": true
}
},
"devDependencies": {
"@contentful/rich-text-types": "^13.4.0",
"@types/fs-extra": "^9.0.8",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.168",
"@types/meow": "^5.0.0",
"@types/node": "^14.14.32",
"@types/prettier": "^1.18.0",
"contentful": "^8.1.9",
"cz-conventional-changelog": "^3.3.0",
"husky": "^3.0.2",
"jest": "^26.6.3",
"lint-staged": "^9.5.0",
"prettier": "1.x",
"rimraf": "^2.6.3",
"rollup": "^1.18.0",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.22.1",
"semantic-release": "^17.4.7",
"ts-jest": "^26.0.0",
"ts-node": "^10.6.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.8.0"
},
"keywords": [],
"engines": {
"node": ">=6.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}