-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
59 lines (59 loc) · 1.44 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
{
"name": "danmaku",
"version": "2.0.7",
"description": "Display danmaku (flying comments) on HTML5 video.",
"main": "dist/danmaku.js",
"module": "dist/esm/danmaku.js",
"sideEffects": false,
"files": [
"dist",
"src",
"types"
],
"types": "types/index.d.ts",
"scripts": {
"dev": "npm run bundle -- -w",
"lint": "eslint src test",
"unit": "karma start",
"test": "npm run lint && npm run unit",
"bundle": "rollup -c",
"build": "npm run bundle",
"preversion": "npm test",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weizhenye/Danmaku.git"
},
"keywords": [
"danmaku",
"comment",
"弹幕",
"video",
"audio",
"live"
],
"author": "Zhenye Wei",
"license": "MIT",
"bugs": {
"url": "https://github.com/weizhenye/Danmaku/issues"
},
"homepage": "https://danmaku.js.org/",
"devDependencies": {
"@rollup/plugin-replace": "^2.3.3",
"chai": "4.2.0",
"es6-promise": "^4.2.8",
"eslint": "^7.6.0",
"karma": "^5.1.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-mocha": "^2.0.1",
"karma-rollup-preprocessor": "^7.0.5",
"mocha": "^4.1.0",
"rollup": "^2.23.0",
"rollup-plugin-istanbul": "^2.0.1",
"rollup-plugin-terser": "^6.1.0"
}
}