-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
75 lines (75 loc) · 2.42 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
{
"name": "macro-carousel",
"version": "1.0.0",
"description": "Carousel as a vanilla Web Component",
"main": "dist/macro-carousel.min.js",
"scripts": {
"bundle-dev": "node_modules/.bin/rollup -c rollup-config/rollup-dev.config.js",
"bundle-test": "node_modules/.bin/rollup -c rollup-config/rollup-test.config.js",
"bundle-prod": "node_modules/.bin/rollup -c rollup-config/rollup-prod.config.js",
"bundle-es5": "node_modules/.bin/rollup -c rollup-config/rollup-es5.config.js",
"test-lint": "eslint test *.js",
"test": "npm run test-lint && npm run bundle-test && karma start",
"test-watch": "npm run test -- --no-single-run",
"start": "node_modules/.bin/rollup -c rollup-config/rollup-dev-serve.config.js --watch",
"build": "npm run test && npm run bundle-dev && npm run bundle-prod && npm run bundle-es5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ciampo/macro-carousel.git"
},
"keywords": [
"Carousel",
"Slider",
"Web Components"
],
"author": "Marco Ciampini <marco.ciampo@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ciampo/macro-carousel/issues"
},
"homepage": "https://github.com/ciampo/macro-carousel#readme",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@webcomponents/webcomponentsjs": "^2.2.10",
"autoprefixer": "^9.6.1",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"chromedriver": "^76.0.1",
"cssnano": "^4.1.10",
"eslint": "^6.4.0",
"eslint-config-google": "^0.14.0",
"karma": "^4.3.0",
"karma-chai": "^0.1.0",
"karma-chai-spies": "^0.1.4",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-coveralls": "^2.1.0",
"karma-firefox-launcher": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"mocha": "^6.2.0",
"postcss-inline-svg": "^4.1.0",
"prismjs": "^1.17.1",
"rollup": "^1.21.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-html": "^0.2.1",
"rollup-plugin-livereload": "^1.0.1",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-re": "^1.0.7",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^5.1.2",
"simulant": "^0.2.2"
},
"peerDependencies": {
"wicg-inert": "2.x",
"focus-visible": "5.x"
},
"browserslist": [
"last 2 versions",
"> 1%",
"ie >= 11"
]
}