-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 991 Bytes
/
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
{
"name": "openmud",
"version": "1.0.0",
"description": "An extensible multiplayer text adventure game. Written for the \"Learn JavaScript with Eric Elliott\" course series.",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_PATH=source babel-node source/test/index.js",
"watch": "watch 'clear && npm run -s test' source",
"update": "updtr"
},
"repository": {
"type": "git",
"url": "git+https://github.com/learn-javascript-courses/openmud.git"
},
"keywords": [
"game"
],
"author": "Eric Elliott",
"license": "MIT",
"bugs": {
"url": "https://github.com/learn-javascript-courses/openmud/issues"
},
"homepage": "https://github.com/learn-javascript-courses/openmud#readme",
"devDependencies": {
"babel-cli": "6.7.7",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-2": "6.5.0",
"cross-env": "1.0.7",
"tape": "4.5.1",
"updtr": "0.1.10",
"watch": "0.17.1"
}
}