-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
68 lines (68 loc) · 1.63 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
66
67
68
{
"name": "twitter-component",
"description": "A native DOM component wrapper for embedded tweets",
"version": "1.0.2",
"author": "Bret Comnes",
"bugs": {
"url": "https://github.com/bcomnes/twitter-component/issues"
},
"browser": {
"assert": "nanoassert"
},
"browserify": {
"transform": [
"yo-yoify"
]
},
"dependencies": {
"bel": "^5.0.3",
"nanoassert": "^1.1.0",
"nanocomponent": "^6.4.1",
"on-idle": "^3.1.2",
"url": "^0.11.0",
"yo-yoify": "^3.7.3"
},
"devDependencies": {
"@tap-format/spec": "^0.2.0",
"bankai": "^9.0.0-1",
"browserify": "^14.4.0",
"budo": "^10.0.4",
"choo": "^6.0.1",
"dependency-check": "^2.9.1",
"global": "^4.3.2",
"nanomap": "^1.0.0",
"noauth-twitterfeed": "^2.0.1",
"npm-run-all": "^4.0.2",
"standard": "^10.0.3",
"tape": "^4.7.0",
"tape-run": "^3.0.0",
"twitter-widgets": "^1.0.0"
},
"homepage": "https://github.com/bcomnes/twitter-component#readme",
"keywords": [
"bel",
"cache-component",
"choo",
"element",
"embed",
"nanocomponent",
"nanomorph",
"tweet",
"twitter"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bcomnes/twitter-component.git"
},
"scripts": {
"start": "budo example/basic.js --live --open",
"start:choo": "budo example/choo.js --live --open",
"test": "run-s test:*",
"test:browser": "browserify test.js | tape-run | tap-format-spec",
"test:deps": "dependency-check .",
"test:lint": "standard",
"build": "bankai build example/choo.js dist"
}
}