forked from contentful/contentful-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 3.84 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "contentful-export",
"version": "0.0.0-determined-by-semantic-release",
"description": "this tool allows you to export a space to a JSON dump",
"main": "dist/index.js",
"engines": {
"node": ">=6"
},
"bin": {
"contentful-export": "./bin/contentful-export"
},
"scripts": {
"build": "npm run clean && babel lib --out-dir dist",
"build:watch": "babel lib --out-dir dist --watch",
"clean": "rimraf dist && rimraf coverage",
"lint": "eslint lib bin/*",
"pretest": "npm run lint && npm run build && rimraf ./test/integration/tmp",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "jest --testPathPattern=test/unit --coverage",
"test:unit:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand --watch --testPathPattern=test/unit",
"test:unit:watch": "npm run test:unit -- --watch",
"test:integration": "jest --testPathPattern=test/integration",
"test:integration:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand --watch --testPathPattern=test/integration",
"test:integration:watch": "npm run test:integration -- --watch",
"semantic-release": "semantic-release",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"precommit": "npm run lint",
"prepush": "npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/contentful/contentful-export.git"
},
"keywords": [
"contentful",
"contentful-export"
],
"author": "Contentful <opensource@contentful.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/contentful/contentful-export/issues"
},
"dependencies": {
"bfj": "^7.0.2",
"bluebird": "^3.3.3",
"cli-table3": "^0.6.0",
"contentful": "^9.0.0",
"contentful-batch-libs": "^9.0.1",
"contentful-management": "^7.3.1",
"figures": "^3.2.0",
"fs-extra": "^10.0.0",
"jsonwebtoken": "^8.5.1",
"listr": "^0.14.1",
"listr-update-renderer": "^0.5.0",
"listr-verbose-renderer": "^0.6.0",
"lodash": "^4.17.10",
"mkdirp": "^1.0.3",
"moment": "^2.22.2",
"request": "^2.87.0",
"request-promise": "^4.2.6",
"yargs": "^17.1.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/template": "^7.0.0",
"@babel/types": "^7.0.0",
"@types/jest": "^27.0.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.1",
"babel-plugin-add-module-exports": "^1.0.2",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^7.2.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^25.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"https-proxy-agent": "^5.0.0",
"husky": "^4.3.8",
"jest": "^27.0.1",
"nixt": "^0.5.0",
"nock": "^13.0.0",
"opener": "^1.4.1",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.0",
"travis-deploy-once": "^5.0.0"
},
"files": [
"bin",
"dist",
"example-config.json",
"index.js"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"lib/**/*.js"
],
"coveragePathIgnorePatterns": [
"usageParams.js"
]
}
}