forked from VincentCharpentier/krousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2 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
{
"name": "@onrewind/krousel",
"version": "0.4.5",
"description": "Javascript carousel library",
"keywords": [
"carousel",
"slider",
"javascript"
],
"homepage": "https://github.com/onrewind/krousel#readme",
"bugs": {
"url": "https://github.com/onrewind/krousel/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onrewind/krousel.git"
},
"license": "MIT",
"author": "On Rewind",
"exports": {
".": "./dist/krousel.js",
"./css": "./dist/krousel.css"
},
"main": "./dist/krousel.js",
"umd:main": "./dist/krousel.umd.js",
"module": "./dist/krousel.module.js",
"source": "./src/index.js",
"files": [
"dist"
],
"scripts": {
"build": "del-cli 'dist/*' && microbundle --name Krousel --sourcemap false --format es,cjs,umd",
"build:examples": "parcel build ./examples/index.html --dist-dir docs --public-url ./",
"publish": "clean-publish",
"serve:examples": "http-server docs",
"size": "npm run build && size-limit",
"test": "npm run size && package-check",
"watch": "microbundle watch --name Krousel --format es,cjs,umd",
"watch:examples": "parcel ./examples/index.html --dist-dir public --open"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"package.json": [
"sort-package-json",
"prettier --write"
],
"src/**/*.js": "prettier --write"
},
"dependencies": {},
"devDependencies": {
"@size-limit/file": "4.6.0",
"@skypack/package-check": "0.1.0",
"clean-publish": "1.1.6",
"del-cli": "3.0.1",
"http-server": "0.12.1",
"husky": "4.2.3",
"lint-staged": "10.0.7",
"microbundle": "0.11.0",
"node-sass": "4.13.1",
"parcel": "2.0.0-beta.2",
"prettier": "1.19.1",
"sass": "1.26.3",
"size-limit": "4.6.0",
"sort-package-json": "1.46.0"
},
"size-limit": [
{
"path": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"limit": "20KB"
}
]
}