This repository has been archived by the owner on Oct 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
145 lines (145 loc) · 4.14 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "atlas-sdk-core",
"version": "4.17.0",
"description": "Atlas JavaScript SDK Core for Zalando Checkout, Guest Checkout, and Catalog APIs.",
"main": "lib/index.node.js",
"browser": "lib/index.js",
"files": [
"src/",
"lib/"
],
"keywords": [
"atlas",
"guest checkout",
"checkout",
"catalog",
"api",
"extensions"
],
"repository": {
"type": "git",
"url": "https://github.com/zalando-incubator/atlas-js-core.git"
},
"license": "MIT",
"scripts": {
"lint": "./node_modules/.bin/eslint src test",
"lint:fix": "./node_modules/.bin/eslint --fix src test",
"clean": "rm -rf lib",
"dev:build": "npm run clean && ./node_modules/.bin/webpack --config webpack.config.dev.js --watch",
"production:build": "npm run clean && ./node_modules/.bin/webpack --config webpack.config.js",
"cover": "./node_modules/.bin/nyc --reporter lcov --reporter text npm run test",
"cover:check": "./node_modules/.bin/nyc check-coverage",
"cover:report-coverage": "npm run cover && cat ./coverage/lcov.info | ./node_modules/.bin/codecov",
"test": "FORCE_COLOR=t ./node_modules/.bin/ava --verbose src/**/__tests__/*.js | tap-notify | tap-diff",
"tdd": "./node_modules/.bin/ava --watch",
"validate": "npm run lint && npm test",
"prepare:release": "npm run validate && npm run production:build && npm audit",
"release:production": "npm run prepare:release && npm run docs",
"docs": "./node_modules/.bin/jsdoc2md -l js -t jsdoc2md/README.hbs src/**/*.js src/*.js > README.md",
"commit": "./node_modules/.bin/git-cz",
"prepush": "npm run validate",
"commitmsg": "./node_modules/.bin/validate-commit-msg",
"semantic-release": "npx semantic-release"
},
"author": "Zalando SE",
"maintainers": [
{
"name": "Ahmed Shehata",
"email": "ahmed.shehata@zalando.de",
"web": "https://github.com/ahmed-shehata"
},
{
"name": "Gleb Galkin",
"email": "gleb.galkin@zalando.de",
"web": "https://github.com/artdaw"
}
],
"dependencies": {
"isomorphic-fetch": "2.2.1",
"uglifyjs-webpack-plugin": "^1.0.0"
},
"devDependencies": {
"@ava/babel-preset-stage-4": "^1.1.0",
"ava": "^2.0.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-import": "^1.12.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chalk": "^2.3.0",
"codecov": "^3.0.4",
"commitizen": "^3.0.4",
"conventional-changelog-angular": "^5.0.1",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^4.10.0",
"eslint-loader": "^1.9.0",
"fetch-mock": "^5.11.0",
"husky": "^0.14.2",
"jsdoc-to-markdown": "^5.0.0",
"json-loader": "^0.5.4",
"node-noop": "^1.0.0",
"nyc": "^14.1.1",
"semantic-release": "^15.13.15",
"tap-diff": "0.1.1",
"tap-notify": "1.0.0",
"terser-webpack-plugin-legacy": "^1.2.3",
"travis-deploy-once": "^5.0.2",
"validate-commit-msg": "^2.12.2",
"webpack": "^3.8.1",
"webpack-merge": "^4.1.0"
},
"engines": {
"node": ">=6"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"build",
"ci",
"chore",
"revert",
"update"
],
"scope": {
"required": true,
"validate": false,
"multiple": false
},
"warnOnFail": false,
"maxSubjectLength": 200,
"subjectPattern": ".+",
"helpMessage": "Please, check your commit message format.",
"autoFix": true
}
},
"ava": {
"testOptions": {
"babelrc": false,
"configFile": false,
"presets": [
"@ava/stage-4"
]
},
"require": [
"@babel/register",
"@babel/polyfill"
],
"concurrency": 2,
"tap": true
}
}