forked from le-doux/bitsy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 709 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 709 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
{
"name": "bitsy-parser",
"version": "0.1.0",
"description": "A parser for turning Bitsy scripts into JS objects, and vice versa.",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "node node_modules/.bin/jest --watch",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand"
},
"repository": {
"type": "git",
"url": "https://github.com/haroldo-ok/bitsy-parser/"
},
"keywords": [
"bitsy",
"8bit",
"parser",
"game-editor",
"retrogaming"
],
"author": "Haroldo de Oliveira Pinheiro",
"license": "MIT",
"devDependencies": {
"jest": "^24.9.0"
},
"dependencies": {
"json-stringify-pretty-compact": "^2.0.0"
}
}