-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.77 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
{
"name": "@gameolive/gameolive",
"version": "1.3.0",
"description": "JS to to simplify game launches with GameOlive platform",
"private": false,
"files": [
"dist"
],
"main": "dist/gameolive.js",
"scripts": {
"build:browser": "webpack && cp dist/gameolive.js examples/browser",
"build:node": "webpack && cp dist/gameolive.js examples/node/ && node examples/node/example.js && node examples/node/lobby.js",
"build": "npm run build:browser && npm run build:node && webpack && npm run generate:doc",
"semantic-release": "semantic-release",
"generate:doc": "jsdoc -c conf.json --debug"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gameolive-studio/gameolive.git"
},
"author": "GameOlive <studio@gameolive.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/gameolive-studio/gameolive/issues"
},
"homepage": "https://github.com/gameolive-studio/gameolive#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.12.0",
"@babel/preset-env": "^7.12.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@qiwi/semantic-release-gh-pages-plugin": "^5.0.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.1.1",
"@semantic-release/npm": "^7.0.6",
"@semantic-release/release-notes-generator": "^9.0.1",
"babel-loader": "^8.1.0",
"husky": "^4.3.0",
"jsdoc": "^3.6.6",
"minami": "^1.2.3",
"webpack": "^5.1.0",
"webpack-cli": "^4.0.0"
},
"dependencies": {
"axios": "^0.20.0"
}
}