forked from lunafromthemoon/RenJS-V2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.64 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
{
"name": "renjs",
"version": "2.0.1",
"description": "RenJS is a videogame library for making Visual Novels that run directly in the web browser",
"main": "dist/renjs-2.0.1.js",
"files": [
"dist"
],
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js --hot --progress",
"build": "webpack --config webpack.prod.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lunafromthemoon/RenJS.git"
},
"keywords": [
"engine",
"visual",
"novel",
"phaser"
],
"author": "lunafromthemoon",
"contributors": [
"RockDaFox"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/lunafromthemoon/RenJS/issues"
},
"homepage": "https://github.com/lunafromthemoon/RenJS#readme",
"devDependencies": {
"@types/js-yaml": "^3.12.5",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^3.9.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"eslint": "^7.7.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"expose-loader": "^1.0.0",
"ts-loader": "^8.0.2",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.1"
},
"dependencies": {
"js-yaml": "^3.14.0",
"object-hash": "^2.0.3",
"phaser-ce": "^2.16.0"
},
"types": "./types/renjs.d.ts"
}