-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (42 loc) · 1.21 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
{
"name": "senso",
"version": "1.0.0",
"description": "#### 2D platformer using the Ludic game engine",
"main": "main.js",
"scripts": {
"build": "./build.sh",
"electron-build": "npm run build && electron electron.js",
"electron": "electron electron.js",
"electron-test": "electron electron.js http://localhost:8080",
"deploy-gh": "git push origin `git subtree split --prefix gh-pages master`:gh-pages --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoftwareSyndicate/senso.git"
},
"keywords": [
"ludic"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SoftwareSyndicate/senso/issues"
},
"homepage": "https://github.com/SoftwareSyndicate/senso#readme",
"devDependencies": {
"jspm": "^0.16.36"
},
"jspm": {
"dependencies": {
"EiN": "github:SoftwareSyndicate/EiN@dev",
"Ludic": "github:SoftwareSyndicate/Ludic@dev",
"animejs": "github:SoftwareSyndicate/anime@chaining",
"box2d": "github:SoftwareSyndicate/box2d@dev"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
}
}
}