forked from mmdevcodes/a11y-slider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.99 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.99 KB
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
{
"name": "a11y-slider",
"version": "0.4.15",
"description": "Library for accessible sliders",
"scripts": {
"dev": "npm run rollup:watch",
"dev:web": "npm run rollup:watch -- --environment WEB",
"build": "npm run rollup:build && npm run build:types",
"rollup:build": "rollup -c",
"rollup:watch": "rollup -c -w",
"build:types": "tsc --emitDeclarationOnly",
"prebuild": "rimraf dist",
"version": "npm run build && git add -u",
"release": "np patch && cd web/ && npm run deployLatest",
"test": ""
},
"main": "dist/a11y-slider.cjs.js",
"module": "dist/a11y-slider.esm.js",
"browser": "dist/a11y-slider.js",
"unpkg": "dist/a11y-slider.js",
"style": "dist/a11y-slider.css",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mmahandev/a11y-slider.git"
},
"bugs": {
"url": "https://github.com/mmahandev/a11y-slider/issues"
},
"author": "mmahandev",
"homepage": "https://github.com/mmahandev/a11y-slider",
"keywords": [
"accessible",
"slider",
"carousel",
"javascript",
"typescript",
"library",
"es6",
"js",
"accessibility",
"a11y"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/plugin-transform-typescript": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"core-js": "^3.6.4",
"np": "^7.0.0",
"rimraf": "^3.0.0",
"rollup": "^1.23.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^7.0.2",
"ts-debounce": "^2.0.1",
"tslib": "^1.10.0",
"typescript": "^3.7.5"
},
"dependencies": {}
}