-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.25 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
{
"name": "media-element-syncer",
"version": "1.1.1",
"description": "Synchronise two or more html media elements.",
"main": "dist/media-element-syncer.js",
"scripts": {
"build": "parcel build --no-minify --out-dir './dist' --global MediaElementSyncer ./src/media-element-syncer.js",
"buildDemo": "parcel build --no-minify --out-dir './demo-build' --global MediaElementSyncer ./src/demo.html",
"start": "parcel serve --out-dir './demo-build' --global MediaElementSyncer ./src/demo.html",
"lint": "prettier --check .",
"prettier": "prettier --write ."
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjenkinson/media-element-syncer.git"
},
"keywords": [
"MediaController",
"media",
"element",
"synchronisation",
"sync"
],
"author": "Tom Jenkinson <tom@tjenkinson.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjenkinson/media-element-syncer/issues"
},
"homepage": "https://github.com/tjenkinson/media-element-syncer#readme",
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"husky": "^4.2.3",
"parcel": "^1.12.4",
"prettier": "^2.1.1"
}
}