-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"scripts": {
"prepublishOnly": "npm run compile && npm run changelog",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"docs:dev": "npx vuepress dev docs",
"docs:build": "npx vuepress build docs",
"compile": "rimraf dist && npx babel src --source-maps --out-dir dist"
},
"name": "barrage-ui",
"version": "1.4.1",
"description": "Best and lightest danmaku component for web UI.",
"homepage": "https://barrage-ui.netlify.com/",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/parksben/barrage.git"
},
"keywords": [
"danmaku",
"barrage",
"弹幕",
"danmu",
"web-player",
"video-player",
"canvas"
],
"author": "parksben",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"conventional-changelog-cli": "^2.0.11",
"rimraf": "^2.6.3",
"vuepress": "^0.14.11"
},
"dependencies": {
"core-js": "^3.8.3"
}
}