-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 1.04 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
{
"name": "xf.js",
"version": "1.2.19",
"description": "simple game framework written in javascript",
"main": "xf.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src --presets babel-preset-es2015 --out-dir ./ && babel src --presets babel-preset-es2015 --out-dir ./../xf-quick-start/node_modules/xf.js/",
"minify": "babel src --presets babel-preset-es2015 --out-dir ./",
"doc": "doxdox 'src/lib/**/*.js' --layout markdown --output 'doc/'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xxfast/xf.js.git"
},
"keywords": [
"xf",
"engine"
],
"author": "Isuru Kusumal Rajapakse <[email protected]> (http://www.xfastgames.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/xxfast/xf.js/issues"
},
"homepage": "https://github.com/xxfast/xf.js#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.5.2",
"babel-preset-es2015": "^6.24.1",
"doxdox": "^2.0.3"
}
}