-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.94 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
{
"name": "reeller",
"version": "0.0.5",
"description": "Flexible, powerful and modern library for creating the running horizontal blocks effect, also known as ticker or the «marquee effect».",
"keywords": [
"marquee",
"ticker",
"reel",
"running blocks",
"running text",
"scrolling text",
"horizontal movement",
"clones",
"scroll",
"filler",
"animation",
"ui",
"library",
"microlibrary",
"magic",
"css",
"effects",
"gsap"
],
"homepage": "https://github.com/Cuberto/reller",
"bugs": "https://github.com/Cuberto/reller/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/Cuberto/reller.git"
},
"license": "MIT",
"author": "Cuberto <[email protected]> (https://cuberto.com/)",
"main": "./dist/index.js",
"unpkg": "./dist/index.umd.js",
"module": "./dist/index.module.js",
"source": "./src/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/",
"src/"
],
"scripts": {
"build": "microbundle -f esm,cjs,umd --name Reeller --compress false --sourcemap false --generateTypes true && microbundle -f umd --name Reeller -o dist/reeller.min.js --no-pkg-main --generateTypes false",
"dev": "microbundle -f esm,cjs,umd --name Reeller --compress false --sourcemap false --generateTypes true --watch",
"lint": "eslint .",
"lint-stagged": "lint-staged",
"prepare": "husky install",
"prettier": "prettier --check ."
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.{js,ts,json,scss,css,html,md}": [
"prettier --write"
]
},
"devDependencies": {
"eslint": "^8.21.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"microbundle": "^0.15.0",
"prettier": "^2.7.1"
}
}