This repository has been archived by the owner on Feb 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 262
/
package.json
81 lines (81 loc) · 3.08 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "live2d-widget",
"version": "3.1.5",
"main": "./lib/L2Dwidget.common.js",
"description": "Add the Sseexxyyy live2d to webpages.",
"scripts": {
"update:submodule": "git submodule foreach git pull origin master",
"_esdoc": "./node_modules/.bin/esdoc",
"_changelog": "conventional-changelog --outfile CHANGELOG.md --release-count 0",
"_titlechangelog": "sed -i '1i\\# Changelog\\n\\n' CHANGELOG.md",
"inst:dev": "npm install -g commitizen && npm install -g conventional-changelog-cli && npm install",
"build:dev": "./node_modules/.bin/webpack --progress --colors",
"build:prod": "./node_modules/.bin/webpack --env prod --progress --colors && npm run build:module",
"build:module": "./node_modules/.bin/webpack --env prod --progress --colors --config webpack.config.common.js",
"build:docs": "git pull && npm run _changelog && git add CHANGELOG.md && npm run update:submodule && git add ghpages",
"build:esdoc": "cp lib/stats.html ghpages/stats.html -f && npm run _titlechangelog && npm run _esdoc",
"deploy:doc": "git pull && git checkout master && cd ghpages/ && git status && git add --all && git commit -m \"Update docs\" && git push origin HEAD:master --force && cd ..",
"deploy": "build:prod && build:docs",
"lint": "eslint --ext .js ./src",
"commit": "git pull && git-cz",
"v:major": "npm version major",
"v:pmajor": "npm version premajor",
"v:minor": "npm version minor",
"v:pminor": "npm version preminor",
"v:patch": "npm version patch",
"v:ppatch": "npm version prepatch",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "opencollective-postinstall"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xiazeyu/live2d-widget.js.git"
},
"author": "xiazeyu <xiazeyu_2011@126.com>",
"contributors": [
"xiazeyu <xiazeyu_2011@126.com>",
"EYHN <cneyhn@gmail.com>"
],
"maintainers": [
"xiazeyu <xiazeyu_2011@126.com>",
"EYHN <cneyhn@gmail.com>"
],
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/xiazeyu/live2d-widget.js/issues"
},
"homepage": "https://github.com/xiazeyu/live2d-widget.js#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.6.1",
"commitizen": "^2.9.6",
"core-js": "^2.5.3",
"current-device": "^0.7.2",
"cz-conventional-changelog": "^2.1.0",
"esdoc": "^1.0.4",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.17.0",
"html-loader": "^0.5.4",
"path": "^0.12.7",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.10.0",
"webpack-manifest-plugin": "^1.3.2",
"webpack-visualizer-plugin": "^0.1.11"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"opencollective-postinstall": "^2.0.1",
"opencollective": "^1.0.3"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/live2d-widgetjs"
}
}