forked from contentful/contentful.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 4.02 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
{
"name": "contentful",
"version": "1.0.0-determined-by-semantic-release",
"description": "Client for Contentful's Content Delivery API",
"homepage": "https://www.contentful.com/developers/documentation/content-delivery-api/",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/contentful/contentful.js.git"
},
"author": "Contentful <[email protected]>",
"license": "MIT",
"tonicExampleFilename": "tonic-example.js",
"scripts": {
"clean": "rimraf dist && rimraf browser-dist && rimraf coverage && rimraf out",
"build:ci": "npm run vendor:version && npm run build:dist && npm run build:standalone",
"build": "npm run clean && npm run build:ci",
"build:dist": "babel lib --out-dir dist",
"build:standalone": "webpack && webpack -p --output-filename contentful.min.js",
"docs:build": "jsdoc -r -c ./jsdoc.json dist",
"docs:dev": "npm run build && npm run docs:build",
"docs:watch": "watchy -w lib npm run docs:dev",
"docs:publish": "npm run docs:build && ./node_modules/contentful-sdk-jsdoc/bin/publish-docs.sh contentful.js contentful",
"test:ci": "./node_modules/contentful-sdk-core/bin/test-ci.sh",
"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",
"test:integration": "babel-node ./test/integration/tests.js",
"test:browser-local": "BABEL_ENV=test ./node_modules/.bin/karma start karma.conf.local.js",
"test:browser-remote": "BABEL_ENV=test ./node_modules/.bin/karma start karma.conf.saucelabs.js",
"vendor:version": "echo \"module.exports = '`cat package.json|json version`'\" > version.js",
"browser-coverage": "npm run test:cover && opener coverage/lcov-report/index.html",
"prepublish": "in-publish && npm run build || not-in-publish",
"postpublish": "npm run docs:publish && npm run clean",
"pretest": "standard lib/*.js && standard lib/**/*.js && standard test/**/*.js",
"test": "npm run test:cover && npm run test:integration && npm run test:browser-local",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"devdep:build": "pushd ../contentful-sdk-core && npm run build && popd",
"devdep:clean": "pushd ../contentful-sdk-core && npm run clean && popd",
"devdep:install": "npm run devdep:build && rm -rf node_modules/contentful-sdk-core && npm install ../contentful-sdk-core && npm run devdep:clean",
"devdep:uninstall": "npm run devdep:clean && rimraf node_modules/contentful-sdk-core"
},
"browser": "./browser.js",
"files": [
"browser.js",
"index.js",
"version.js",
"dist",
"browser-dist",
"tonic-example.js"
],
"dependencies": {
"babel-runtime": "^6.3.19",
"contentful-sdk-core": "^2.3.0",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.2.0"
},
"devDependencies": {
"axios": "^0.9.1",
"babel-cli": "^6.4.5",
"babel-eslint": "^6.0.3",
"babel-loader": "^6.2.2",
"babel-plugin-rewire": "^1.0.0-beta-5",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.4.3",
"blue-tape": "^0.2.0",
"contentful-sdk-jsdoc": "^1.2.0",
"coveralls": "^2.11.6",
"cz-conventional-changelog": "^1.1.5",
"in-publish": "^2.0.0",
"istanbul": "^1.0.0-alpha.2",
"jsdoc": "^3.4.0",
"json": "^9.0.3",
"json-loader": "^0.5.4",
"karma": "^0.13.21",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^0.2.2",
"karma-sauce-launcher": "^0.3.0",
"karma-tap": "^1.0.3",
"karma-webpack": "^1.7.0",
"mkdirp": "^0.5.1",
"opener": "^1.4.1",
"require-all": "^2.0.0",
"rimraf": "^2.5.1",
"semantic-release": "^4.3.5",
"sinon": "^2.0.0-pre",
"standard": "^6.0.8",
"webpack": "^1.12.13"
},
"standard": {
"parser": "babel-eslint"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}