This repository has been archived by the owner on May 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
89 lines (89 loc) · 3.08 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
{
"name": "contentful-space-sync",
"description": "Syncs Contentful spaces",
"bin": "bin/space-sync",
"main": "index.js",
"scripts": {
"build": "rimraf dist && mkdirp dist && babel lib --out-dir dist",
"clean": "rimraf dist && rimraf coverage",
"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"
},
"dependencies": {
"bluebird": "^3.3.3",
"contentful-batch-libs": "4.6.1",
"lodash": "^4.0.0",
"npmlog": "^2.0.0",
"yargs": "^4.2.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",
"ghooks": "^1.3.2",
"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"
},
"engines": {
"node": "<6.0.0"
},
"files": [
"bin",
"dist",
"example-config.json",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/contentful/contentful-space-sync.git"
},
"keywords": [
"contentful",
"sync",
"space"
],
"author": "Tiago Rodrigues <tiago@contentful.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/contentful/contentful-space-sync/issues"
},
"homepage": "https://github.com/contentful/contentful-space-sync#readme",
"standard": {
"parser": "babel-eslint"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run test:only"
}
}
}