forked from TannerRogalsky/love.js
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
44 lines (44 loc) · 1.09 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
{
"name": "love.js",
"version": "11.4.1",
"description": "Tooling to support the Emscripten port of LÖVE.",
"engines": {
"node": ">=7.10.0",
"npm": ">=4.2.0"
},
"main": "index.js",
"scripts": {
"lint": "eslint index.js src",
"test": "npm run lint",
"preversion": "npm run test",
"version": "./build_lovejs.sh",
"postversion": "git push && git push --tags"
},
"bin": {
"love.js": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Davidobot/love.js.git"
},
"author": "Tanner Rogalsky <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Davidobot/love.js/issues"
},
"homepage": "https://github.com/Davidobot/love.js#readme",
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1"
},
"dependencies": {
"commander": "^2.9.0",
"fs-extra": "^3.0.1",
"klaw-sync": "^2.1.0",
"mustache": "^2.3.0",
"uuid": "^3.0.1"
}
}