-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.46 KB
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
{
"name": "miaam",
"version": "2.0.1",
"description": "Miaam Web Game Framework",
"scripts": {
"format": "prettier --write .",
"lint": "eslint .",
"lint:staged": "lint-staged --config .lintstagedrc.json",
"dev:webpack:build": "webpack --config ./webpack.dev.config.js",
"dev:live-server:serve": "live-server --verbose public/",
"dev": "concurrently npm:dev:*",
"test": "mocha",
"test:watch": "mocha --watch || exit 0",
"doc:contrib": "rm -rf ./docs/ && jsdoc -c ./contrib.jsdoc.json -R README.md",
"doc:dev": "rm -rf ./docs/ && jsdoc -c ./dev.jsdoc.json -R README.md",
"doc": "concurrently npm:doc:*",
"prepare": "husky install"
},
"keywords": [
"Miaam",
"Web",
"JavaScript"
],
"author": "Team Miaam Core",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/eslint-plugin": "^7.13.16",
"@babel/preset-env": "^7.16.4",
"@babel/register": "^7.16.0",
"@pixi/jsdoc-template": "^2.6.0",
"babel-loader": "^8.2.3",
"chai": "^4.3.4",
"concurrently": "^6.4.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^7.0.4",
"jsdoc": "^3.6.7",
"lint-staged": "^12.1.3",
"mocha": "^9.1.3",
"prettier": "^2.4.1",
"source-map-loader": "^3.0.0",
"webpack": "^5.64.3",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"pixi.js": "^6.2.2"
}
}