forked from contentful/contentful-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.93 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
{
"name": "contentful-export",
"description": "this tool allows you to export a space to a JSON dump",
"bin": "bin/contentful-export",
"main": "index.js",
"scripts": {
"build": "npm run clean && mkdirp dist && babel lib --out-dir dist",
"clean": "rimraf dist",
"prepublish": "in-publish && npm run build || not-in-publish",
"postpublish": "npm run clean",
"pretest": "standard",
"test": "npm run test:cover",
"test:cover": "BABEL_ENV=test babel-node ./node_modules/istanbul/lib/cli.js cover test/runner",
"test:only": "BABEL_ENV=test babel-node ./test/runner",
"test:debug": "BABEL_ENV=test babel-node debug ./test/runner",
"browser-coverage": "npm run test:cover && opener coverage/lcov-report/index.html",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"devmanage:build": "pushd ../contentful-management.js && npm run build && popd",
"devmanage:clean": "pushd ../contentful-management.js && npm run clean && popd",
"devmanage:install": "npm run devmanage:build && rm -rf node_modules/contentful-management.js && npm install ../contentful-management.js && npm run devmanage:clean",
"devmanage:uninstall": "npm run devmanage:clean && rimraf node_modules/contentful-management.js",
"devdep:build": "pushd ../contentful-batch-libs && npm run build && popd",
"devdep:clean": "pushd ../contentful-batch-libs && npm run clean && popd",
"devdep:install": "npm run devdep:build && rm -rf node_modules/contentful-batch-libs && npm install ../contentful-batch-libs && npm run devdep:clean",
"devdep:uninstall": "npm run devdep:clean && rimraf node_modules/contentful-batch-libs"
},
"repository": {
"type": "git",
"url": "https://github.com/contentful/contentful-export.git"
},
"keywords": [
"contentful",
"contentful-export"
],
"author": "Contentful <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/contentful/contentful-export/issues"
},
"dependencies": {
"bluebird": "^3.3.3",
"contentful-batch-libs": "^4.1.0",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.0.0",
"npmlog": "^4.0.0",
"yargs": "^5.0.0"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-eslint": "^6.0.2",
"babel-plugin-rewire": "^1.0.0-beta-3",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.3.13",
"coveralls": "^2.11.6",
"cz-conventional-changelog": "^1.1.4",
"in-publish": "^2.0.0",
"istanbul": "^1.0.0-alpha.2",
"mkdirp": "^0.5.1",
"opener": "^1.4.1",
"require-all": "^2.0.0",
"rimraf": "^2.5.0",
"semantic-release": "^4.3.5",
"sinon": "^1.17.2",
"standard": "^6.0.7",
"tape": "^4.5.1"
},
"files": [
"bin",
"dist",
"example-config.json",
"index.js"
],
"standard": {
"parser": "babel-eslint"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}