forked from emkay/nesly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 741 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 741 Bytes
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": "nesly",
"version": "0.3.1",
"description": "Ever want to program a NES game?",
"main": "index.js",
"bin": {
"nesly": "./bin/nesly"
},
"directories": {
"example": "examples"
},
"dependencies": {
"falafel": "^1.2.0"
},
"devDependencies": {
"tap": "~0.4.4"
},
"scripts": {
"test": "tap tests/*.js && standard",
"example": "./bin/nesly ./examples/mario-demo.js ./examples/mario-demo.s"
},
"repository": {
"type": "git",
"url": "git://github.com/emkay/nesly.git"
},
"keywords": [
"nes",
"game",
"language"
],
"author": "Michael Matuzak <michael@lambdaphant.com>",
"license": "BSD",
"bugs": {
"url": "https://github.com/emkay/nesly/issues"
}
}