forked from tjenkinson/dynamic-marquee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "dynamic-marquee",
"version": "2.0.1",
"description": "A small library for creating marquees.",
"main": "./dist/dynamic-marquee.js",
"types": "./dist/dynamic-marquee.d.ts",
"scripts": {
"build": "rollup --config rollup.config.js",
"watch": "rollup --config rollup.config.js --watch",
"prettier": "prettier --write .",
"lint": "prettier --check .",
"preversion": "npm run build"
},
"files": [
"dist/**/*"
],
"husky": {
"hooks": {
"pre-commit": "npm run prettier"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjenkinson/dynamic-marquee.git"
},
"keywords": [
"marquee",
"js",
"javascript",
"graphics",
"casparcg"
],
"author": "Tom Jenkinson <[email protected]>",
"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-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"husky": "^4.2.3",
"longest-common-substring": "0.0.1",
"prettier": "^2.0.2",
"rollup": "^2.0.6",
"rollup-plugin-babel": "^4.4.0"
}
}