|
1 | 1 | {
|
2 | 2 | "name": "atlas-sdk-core",
|
3 |
| - "version": "3.0.4", |
| 3 | + "version": "3.0.5", |
4 | 4 | "description": "Atlas JavaScript SDK Core for Zalando Checkout, Guest Checkout, and Catalog APIs.",
|
5 | 5 | "main": "lib/index.node.js",
|
6 | 6 | "browser": "lib/index.js",
|
|
23 | 23 | "license": "MIT",
|
24 | 24 | "scripts": {
|
25 | 25 | "lint": "eslint src test",
|
26 |
| - |
27 | 26 | "clean": "rm -rf lib",
|
28 | 27 | "dev:build": "npm run clean && ./node_modules/.bin/webpack --config webpack.config.dev.js --watch",
|
29 | 28 | "production:build": "npm run clean && ./node_modules/.bin/webpack --config webpack.config.js",
|
30 |
| - |
31 | 29 | "david": "./node_modules/.bin/david",
|
32 | 30 | "check": "nsp check package",
|
33 | 31 | "cover": "nyc --reporter lcov --reporter text npm run test",
|
34 | 32 | "cover:check": "nyc check-coverage",
|
35 | 33 | "cover:report-coverage": "npm run cover && cat ./coverage/lcov.info | codecov",
|
36 |
| - |
37 | 34 | "test": "FORCE_COLOR=t ./node_modules/.bin/ava --verbose | tap-notify | tap-diff",
|
38 | 35 | "tdd": "ava --watch",
|
39 | 36 | "validate": "npm run lint && npm test",
|
40 |
| - |
41 | 37 | "prepare": "npm run validate && npm run production:build && npm run check",
|
42 | 38 | "release:production": "npm run prepare && npm run docs",
|
43 |
| - |
44 | 39 | "docs": "rm -rf docs && ./node_modules/.bin/jsdoc -r -c ./jsdoc_conf.json -t ./node_modules/ink-docstrap/template -d docs/ -R README.md",
|
45 | 40 | "docs:deploy": "./node_modules/.bin/gh-pages -d docs",
|
46 | 41 | "gh-pages-travis": "gh-pages-travis",
|
47 |
| - |
48 | 42 | "commit": "./node_modules/.bin/git-cz",
|
49 | 43 | "semantic-release": "semantic-release pre && npm publish && semantic-release post"
|
50 | 44 | },
|
|
107 | 101 | },
|
108 | 102 | "ava": {
|
109 | 103 | "babel": {
|
110 |
| - "presets": ["@ava/stage-4"] |
| 104 | + "presets": [ |
| 105 | + "@ava/stage-4" |
| 106 | + ] |
111 | 107 | },
|
112 | 108 | "require": "babel-register",
|
113 | 109 | "concurrency": 2,
|
|
0 commit comments