-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "danmakubox.js",
"version": "1.0.0",
"description": "A javascript danmaku renderer for canvas2d",
"files": [
"dist"
],
"main": "dist/danmakubox.js",
"scripts": {
"build": "rollup -c && rollup -c rollup.config.es6global.js",
"build-min": "rollup -c && uglifyjs dist/danmakubox.js -cm > dist/danmakubox.min.js",
"prepublish": "rollup -c && rollup -c rollup.config.es6global.js && uglifyjs dist/danmakubox.js -cm > dist/danmakubox.min.js",
"dev": "rollup -c -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benpigchu/danmakubox.js.git"
},
"keywords": [
"danmaku",
"canvas",
"canvas2d"
],
"author": "benpigchu",
"license": "MIT",
"bugs": {
"url": "https://github.com/benpigchu/danmakubox.js/issues"
},
"homepage": "https://github.com/benpigchu/danmakubox.js#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-external-helpers": "^6.18.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1",
"uglify-js": "^2.7.4"
}
}