forked from contentful/contentful-migration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.61 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
{
"name": "contentful-migration",
"version": "0.9.0",
"description": "Migration tooling for contentful",
"author": "Contentful GmbH",
"license": "MIT",
"main": "index.js",
"keywords": [
"contentful",
"content model",
"content type",
"migration",
"migrations",
"migrate"
],
"directories": {
"test": "test",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git://github.com/contentful/migration-cli.git"
},
"scripts": {
"clean": "rimraf built",
"build": "npm run clean && tsc -p .",
"prepare": "npm run build",
"test": "npm run build && npm run test-unit && npm run test-integration && npm run test-e2e && npm run lint",
"test-watch": "npm run test-unit -- --watch",
"test-unit": "NODE_ENV=test mocha --compilers ts-node/register --recursive test/unit/lib/ ",
"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'",
"cover-unit": "nyc npm run test-unit",
"cover-integration": "nyc npm run test-integration",
"cover-e2e": "nyc npm run test-e2e",
"cover": "nyc --no-clean -s npm run test-unit && nyc --no-clean -s npm run test-integration && nyc --no-clean -s npm run test-e2e && nyc report",
"coverage": "npm run build && npm run cover && nyc report --reporter=text-lcov > coverage.lcov",
"coverage-report": "npm run coverage && codecov && rm -rf ./nyc_output && rm coverage.lcov",
"lint": "eslint 'examples/**/*.js' 'test/**/*.js' 'src/**/*.js' && tslint --project tsconfig.json --config tslint.json"
},
"nyc": {
"per-file": true,
"include": [
"src/lib/**/*.js",
"src/lib/**/*.ts",
"src/bin/**/*.js",
"src/bin/**/*.ts",
"built/lib/**/*.js",
"built/bin/**/*.js"
],
"exclude": [
"test/**/*.spec.js",
"test/**/*.spec.ts",
"test/**/*.js",
"test/**/*.ts",
"node_modules/**/*.js",
"node_modules/**/*.ts",
"typings"
],
"extension": [
".ts"
],
"all": true
},
"dependencies": {
"bluebird": "^3.5.0",
"callsites": "^2.0.0",
"cardinal": "^1.0.0",
"chalk": "^2.2.0",
"contentful-management": "^4.0.3",
"didyoumean2": "^1.3.0",
"hoek": "^4.2.1",
"https-proxy-agent": "^2.1.0",
"inquirer": "^3.2.3",
"joi": "^10.6.0",
"kind-of": "^5.0.2",
"listr": "^0.12.0",
"lodash": "^4.17.4",
"yargs": "^8.0.2"
},
"devDependencies": {
"@contentful/eslint-config-backend": "^5.0.0",
"@types/bluebird": "^3.5.15",
"@types/chai": "^4.0.4",
"@types/chai-as-promised": "^7.1.0",
"@types/hoek": "^4.1.3",
"@types/joi": "^10.4.4",
"@types/lodash": "^4.14.77",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.46",
"@types/sinon-chai": "^2.7.29",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^2.3.0",
"dirty-chai": "^2.0.1",
"eslint": "^4.6.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^3.4.0",
"nixt": "^0.5.0",
"nyc": "^11.2.1",
"rewire": "^2.5.2",
"rimraf": "^2.6.2",
"sinon": "^2.4.1",
"sinon-chai": "^2.13.0",
"source-map-support": "^0.5.0",
"strip-ansi": "^4.0.0",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"tslint-config-standard": "^6.0.1",
"typescript": "^2.5.3",
"uuid": "^3.2.1"
},
"bin": {
"contentful-migration": "./bin/contentful-migration"
},
"engines": {
"node": ">=8.0.0"
}
}