-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 1.73 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
{
"name": "youtube-component",
"description": "A native DOM component for embedding youtube video players",
"version": "1.1.2",
"author": "Bret Comnes",
"browserify": {
"transform": [
"yo-yoify"
]
},
"bugs": {
"url": "https://github.com/bcomnes/youtube-component/issues"
},
"dependencies": {
"embed-video": "^2.0.4",
"nanoassert": "^2.0.0",
"nanocomponent": "^6.5.2",
"nanohtml": "^1.6.3",
"yo-yoify": "^4.3.0"
},
"devDependencies": {
"@tap-format/spec": "^0.2.0",
"browserify": "^16.3.0",
"budo": "^11.6.2",
"choo": "^6.13.3",
"cpx2": "^2.0.0",
"dependency-check": "^4.1.0",
"global": "^4.4.0",
"mkdirp": "^1.0.0",
"nanocomponent-cache": "^1.1.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"standard": "^14.0.0",
"tape": "^4.11.0",
"tape-run": "^6.0.0"
},
"homepage": "https://github.com/bcomnes/youtube-component#readme",
"keywords": [
"choo",
"dailymotion",
"embed",
"nanocomponent",
"nanomorph",
"video",
"vimeo",
"youtube"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bcomnes/youtube-component.git"
},
"scripts": {
"build": "rimraf build && mkdirp build && browserify example/choo.js -o build/bundle.js && cpx 'example/static/*' build",
"start": "budo example/choo.js:bundle.js --dir example/static --live --open",
"start:basic": "budo example/basic.js --live --open",
"start:test": "budo test.js --live --open",
"test": "run-s test:*",
"test:browser": "browserify test.js | tape-run | tap-format-spec",
"test:deps": "dependency-check . --no-dev --no-peer -i yo-yoify",
"test:lint": "standard"
}
}