-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
49 lines (49 loc) · 1.36 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
{
"name": "dynamic-marquee",
"version": "2.6.5",
"description": "A small library for creating marquees.",
"main": "./dist/dynamic-marquee.js",
"module": "./dist/dynamic-marquee.mjs",
"types": "./dist/dynamic-marquee.d.ts",
"scripts": {
"build": "rollup --config rollup.config.mjs",
"watch": "rollup --config rollup.config.mjs --watch",
"prettier": "prettier --write .",
"lint": "eslint --ext js src && prettier --check .",
"preversion": "npm run build",
"prepare": "husky install"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tjenkinson/dynamic-marquee.git"
},
"keywords": [
"marquee",
"js",
"javascript",
"graphics",
"casparcg"
],
"author": "Tom Jenkinson <tjcode@outlook.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tjenkinson/dynamic-marquee/issues"
},
"homepage": "https://github.com/tjenkinson/dynamic-marquee#readme",
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@tjenkinson/boundary": "^2.0.0",
"eslint": "^8.36.0",
"husky": "^8.0.3",
"longest-common-substring": "0.0.1",
"prettier": "^3.0.0",
"rollup": "^3.18.0"
}
}