|
1 | 1 | {
|
2 | 2 | "name": "contentful",
|
| 3 | + "version": "1.0.0-determined-by-semantic-release", |
3 | 4 | "description": "Client for Contentful's Content Delivery API",
|
4 | 5 | "homepage": "https://www.contentful.com/developers/documentation/content-delivery-api/",
|
5 | 6 | "main": "index.js",
|
|
16 | 17 | "build": "npm run clean && npm run build:ci",
|
17 | 18 | "build:dist": "babel lib --out-dir dist",
|
18 | 19 | "build:standalone": "webpack && webpack -p --output-filename contentful.min.js",
|
19 |
| - "link-dev-deps": "mkdirp node_modules && ln -s ../../contentful-sdk-core/src node_modules/contentful-sdk-core", |
20 |
| - "unlink-dev-deps": "rimraf node_modules/contentful-sdk-core", |
21 | 20 | "docs:build": "jsdoc -r -c ./jsdoc.json dist",
|
22 | 21 | "docs:dev": "npm run build && npm run docs:build",
|
23 | 22 | "docs:watch": "watchy -w lib npm run docs:dev",
|
|
35 | 34 | "postpublish": "npm run docs:publish && npm run clean",
|
36 | 35 | "pretest": "standard lib/*.js && standard lib/**/*.js && standard test/**/*.js",
|
37 | 36 | "test": "npm run test:cover && npm run test:integration && npm run test:browser-local",
|
38 |
| - "semantic-release": "semantic-release pre && npm publish && semantic-release post" |
| 37 | + "semantic-release": "semantic-release pre && npm publish && semantic-release post", |
| 38 | + "devdep:build": "pushd ../contentful-sdk-core && npm run build && popd", |
| 39 | + "devdep:clean": "pushd ../contentful-sdk-core && npm run clean && popd", |
| 40 | + "devdep:install": "npm run devdep:build && rm -rf node_modules/contentful-sdk-core && npm install ../contentful-sdk-core && npm run devdep:clean", |
| 41 | + "devdep:uninstall": "npm run devdep:clean && rimraf node_modules/contentful-sdk-core" |
39 | 42 | },
|
40 | 43 | "browser": "./browser.js",
|
41 | 44 | "files": [
|
|
0 commit comments