-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.55 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
{
"name": "@katreque/tempojs",
"version": "0.1.2",
"description": "TempoJS is a JavaScript Game Engine for turn-based games on both Client or Server side.",
"main": "build/index.js",
"scripts": {
"prettier": "npx prettier --write .",
"lint": "npx eslint --fix lib/**/*.js",
"code-check": "npm run flow && npm run prettier && npm run remove-flow && npm run lint",
"flow": "npx flow",
"remove-flow": "flow-remove-types --pretty src/ -d lib/",
"test": "npm run remove-flow && nyc ava",
"uglify": "npx uglifyjs-folder lib/ -x .js -eo build/ --log-level error",
"dev-build": "npm run flow && npm run prettier && npm run remove-flow",
"build": "npm run test && npm run code-check && npm run uglify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Katreque/TempoJS.git"
},
"author": "Katreque",
"license": "BSD 3-Clause Licensed",
"bugs": {
"url": "https://github.com/Katreque/TempoJS/issues"
},
"homepage": "https://github.com/Katreque/TempoJS#readme",
"devDependencies": {
"ava": "^3.13.0",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-import": "^2.22.1",
"flow-bin": "^0.136.0",
"flow-remove-types": "^2.136.0",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"sinon": "^9.2.1",
"uglifyjs-folder": "^2.0.0"
},
"dependencies": {
"events": "^3.2.0"
}
}