-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.44 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.44 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
{
"name": "mathswipe",
"version": "0.0.0",
"description": "MathSwipe is a CoffeeScript game developed in the context of the Originate 'Intern Hack 2015' Event, presented August 2015. It is a web-game in which the user is given a grid of numbers (0-9) and operators (×, +, -), as well as a set of goal-values. The user's goal is to swipe a path through the cells to create an expression that evaluates to one of the goal-values. A level is completed when the user finds expressions evaluating to each goal-value.",
"main": "index.js",
"scripts": {
"devserve": "webpack-dev-server -d --config webpack.config.js --content-base ./ --progress --colors",
"devbuild": "webpack -d --config webpack.config.js --profile --progress --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sf-interns/mathswipe.git"
},
"author": "Brandon Woo, Eric Campbell, Jonathan Chu, Shubham Gogna",
"license": "ISC",
"bugs": {
"url": "https://github.com/sf-interns/mathswipe/issues"
},
"homepage": "https://github.com/sf-interns/mathswipe#readme",
"dependencies": {
"backbone": "^1.2.1",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.9.3",
"jquery": "^2.1.4",
"node-libs-browser": "^0.5.2",
"two.js": "^0.4.0",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.10.1"
},
"devDependencies": {
"chai": "^3.0.0",
"mycha": "^0.9.1",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0"
}
}