-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathpackage.json
129 lines (129 loc) · 3.69 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
{
"name": "contentful-migration",
"version": "0.0.0-development",
"description": "Migration tooling for contentful",
"author": "Contentful GmbH",
"license": "MIT",
"main": "index",
"keywords": [
"contentful",
"content model",
"content type",
"migration",
"migrations",
"migrate"
],
"directories": {
"test": "test",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "https://github.com/contentful/contentful-migration"
},
"scripts": {
"clean": "rimraf built",
"build": "npm run clean && tsc -p tsconfig.json",
"build-dev": "npm run clean && tsc -p tsconfig-dev.json",
"prepare": "npm run build",
"test": "NOCK_RECORD=0 npm run build && npm run test-unit && npm run test-integration && npm run test-e2e && npm run lint && npm run test-typescript-declaration",
"test-watch": "npm run test-unit -- --watch",
"test-unit": "NODE_ENV=test mocha --require test/setup-unit.js --recursive 'test/unit/**/**/*.spec.{js,ts}'",
"test-integration": "NODE_ENV=test mocha --require test/integration/setup.js 'test/integration/**/*.spec.js'",
"test-e2e": "NODE_ENV=test mocha 'test/end-to-end/**/*.spec.js'",
"test-typescript-declaration": "tsc --strict --noEmit index.d.ts",
"lint": "eslint 'examples/**/*.js' 'test/**/*.js' 'src/**/*.js' && tslint --project tsconfig-dev.json --config tslint.json -e '**/*.js'",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"files": [
"README.md",
"index.d.ts",
"CHANGELOG.md",
"bin",
"built",
"docs"
],
"dependencies": {
"axios": "^0.19.2",
"bluebird": "^3.7.2",
"callsites": "^3.1.0",
"cardinal": "^2.1.1",
"chalk": "^4.0.0",
"contentful-management": "^5.18.2",
"didyoumean2": "^4.0.0",
"hoek": "^6.1.3",
"https-proxy-agent": "^5.0.0",
"inquirer": "^7.1.0",
"joi": "^10.6.0",
"kind-of": "^6.0.3",
"listr": "^0.14.3",
"lodash": "^4.17.15",
"yargs": "^15.3.1"
},
"devDependencies": {
"@contentful/eslint-config-backend": "^7.0.0",
"@semantic-release/changelog": "^5.0.1",
"@types/bluebird": "^3.5.30",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/hoek": "^4.1.3",
"@types/joi": "^10.6.5",
"@types/lodash": "^4.14.149",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"@types/sinon-chai": "^3.2.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^7.1.1",
"nixt": "^0.5.1",
"nock": "^12.0.3",
"rewire": "^5.0.0",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.4",
"sinon": "^9.0.1",
"sinon-chai": "^3.5.0",
"source-map-support": "^0.5.16",
"strip-ansi": "^6.0.0",
"travis-deploy-once": "^5.0.11",
"ts-node": "^8.8.1",
"tslint": "^6.1.1",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.8.3",
"uuid": "^7.0.3",
"zlib": "^1.0.5"
},
"bin": {
"contentful-migration": "./bin/contentful-migration"
},
"engines": {
"node": ">=8.0.0"
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github"
]
}
}