-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·44 lines (44 loc) · 1004 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
35
36
37
38
39
40
41
42
43
44
{
"name": "mage-console",
"version": "0.3.2",
"description": "Alternative MAGE development console, with REPL interface",
"main": "index.js",
"bin": {
"mage-console": "./bin/mage-console",
"ts-mage-console": "./bin/ts-mage-console"
},
"scripts": {
"test": "eslint --ext .js,.json ."
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mage/mage-console.git"
},
"keywords": [
"mage",
"game",
"repl"
],
"author": "Marc Trudel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mage/mage-console/issues"
},
"homepage": "https://github.com/mage/mage-console#readme",
"devDependencies": {
"eslint": "^3.19.0",
"eslint-plugin-json": "1.2.0",
"git-message": "1.0.1",
"pre-commit": "1.2.2"
},
"dependencies": {
"chalk": "1.1.3",
"memorystream": "0.3.1",
"node-watch": "0.5.2",
"pretty-error": "2.1.1",
"semver": "5.3.0"
}
}