forked from eBay/ebayui-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
147 lines (147 loc) · 5.25 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
146
147
{
"name": "@ebay/ebayui-core",
"version": "4.5.0",
"description": "Collection of core eBay components; considered to be the building blocks for all composite structures, pages & apps.",
"scripts": {
"installMarkoV3": "node scripts/install-no-save marko@^3 marko-widgets@^6 -D",
"installMarkoV4": "yarn --frozen-lockfile # reinstall according to package.json/yarn.lock",
"prepublishOnly": "node scripts/prepublish",
"postversion": "npm run storybook:build",
"postpublish": "node scripts/postpublish",
"start": "yarn clean; browser-refresh demo/",
"start:prod": "NODE_ENV=production yarn start",
"coverage": "nyc marko test && node scripts/coverage",
"report": "nyc report --reporter=html",
"test": "yarn coverage && yarn report",
"test:server": "marko test --server",
"test:browser": "marko test --browser",
"test:fps": "karma start",
"test:integration": "yarn installMarkoV3 && mocha integration && yarn clean:integration && yarn installMarkoV4 && mocha integration; r=$?; (yarn installMarkoV4 && yarn clean:integration); exit $r",
"test:browserstack": "env $(cat .env | xargs) yarn tb",
"clean": "rimraf .coverage .karma .nyc_output demo/static && yarn clean:integration",
"clean:integration": "rimraf integration/*.marko.js integration/static",
"lint": "yarn lint:less && yarn lint:js && yarn lint:whitespace",
"lint:less": "stylelint '**/**.less'",
"lint:js": "eslint .",
"lint:whitespace": "lintspaces *.md src/**/*.md src/**/*.marko 'src/**/!(*.marko).js' src/**/*.less --newline --maxnewlines 1 --trailingspaces --spaces 4",
"build": "yarn lint && yarn build:v3 && yarn build:v4; r=$?; (yarn clean && yarn installMarkoV4); exit $r",
"build:ci": "yarn lint && yarn test && mocha integration && yarn build:v4",
"build:v3": "yarn installMarkoV3 && yarn clean:integration && yarn test && mocha integration",
"build:v4": "yarn installMarkoV4 && yarn clean:integration && yarn test && mocha integration",
"shrinkwrap": "rimraf yarn.lock; rimraf node_modules; yarn cache clean && yarn",
"storybook:build": "DS=6 build-storybook -o ./docs && DS=4 build-storybook -o ./docs/ds4",
"storybook:start": "start-storybook -p 6006",
"importSVG": "node scripts/import-svg",
"ts": "yarn test:server",
"tb": "yarn test:browser",
"tf": "yarn test:fps",
"ti": "yarn test:integration",
"tr": "yarn coverage && yarn report && open .coverage/index.html"
},
"pre-push": [
"lint",
"test"
],
"browserslist": [
"extends @ebay/browserslist-config"
],
"files": [
"dist",
"!*.marko.js",
"!**/test*",
"marko.json",
"yarn.lock",
"*.browser.json",
"marketplace.json"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eBay/ebayui-core"
},
"keywords": [
"marko-components"
],
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@babel/runtime-corejs3": "^7.7.6",
"@ebay/browserslist-config": "^1.0.0",
"@ebay/skin": "9.5.0",
"@lasso/marko-taglib": "^1.0.15",
"@marko/testing-library": "^2.1.0",
"@storybook/addon-knobs": "^5.2.8",
"@storybook/marko": "^5.2.8",
"async": "^3.0.1",
"babel-loader": "^8.0.6",
"browser-refresh": "^1.7.2",
"chai": "^4.2.0",
"chai-dom": "^1.8.1",
"chromedriver": "^78.0.1",
"core-js": "^3.4.8",
"coveralls": "^3.0.9",
"css-loader": "^3.3.0",
"eslint": "^6.7.2",
"eslint-config-ebay": "^1.1.0",
"eslint-plugin-compat": "^3.3.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-mocha": "^6.2.2",
"express": "^4.17.1",
"gh-highlight": "^0.1.3",
"is-travis": "^2.0.0",
"karma": "^4.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-lasso": "^4.0.0",
"karma-mocha": "^1.3.0",
"lasso": "^3.3.0",
"lasso-babel-transform": "^3.0.0",
"lasso-less": "^3.0.2",
"lasso-marko": "^2.4.8",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"lintspaces-cli": "^0.7.1",
"marko": "^4.18.28",
"marko-cli": "^7.0.25",
"marko-prettyprint": "^1.5.2",
"marko-widgets": "^7",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"open-cli": "^5.0.0",
"pre-push": "^0.1.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"sinon": "^7.5.0",
"storybook-readme": "^5.0.8",
"style-loader": "^1.0.1",
"stylelint": "^12.0.0",
"supertest": "^4.0.2",
"wdio-browserstack-service": "^0.1.19",
"webpack-plugin-browser-json": "^1.1.1"
},
"peerDependencies": {
"@ebay/skin": "9.5.0",
"chromedriver": "^77.0.0",
"marko": "^3 || ^4",
"marko-widgets": "^6 || ^7"
},
"dependencies": {
"core-js-pure": "^3.4.1",
"makeup-active-descendant": "~0.3.0",
"makeup-expander": "~0.8.0",
"makeup-floating-label": "~0.0.5",
"makeup-focusables": "~0.0.4",
"makeup-key-emitter": "~0.1.0",
"makeup-keyboard-trap": "~0.2.0",
"makeup-prevent-scroll-keys": "~0.0.3",
"makeup-roving-tabindex": "~0.3.1",
"makeup-screenreader-trap": "~0.1.0",
"nodelist-foreach-polyfill": "^1.2.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}