-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
44 lines (44 loc) · 1.07 KB
/
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": "jsSMS",
"version": "0.0.1",
"author": "G. C. Marty",
"description":
"JavaScript Sega Master System & Game Gear dynamic recompiling emulator",
"bin": {
"jssms": "./bin/jssms.js"
},
"scripts": {
"format":
"prettier --config .prettierrc --write '*.js' 'src/**/*.js' 'bin/**/*.js' '**/*.md' '**/*.json'",
"lint": "eslint src/",
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "pretty-quick --staged"
},
"main": "./min/jssms.node.js",
"repository": "git://github.com/gmarty/jsSMS.git",
"dependencies": {
"closurecompiler-externs": "^1.0.0",
"glob": "^4.0.2",
"grunt": "^0.4.5",
"grunt-closure-compiler": "^0.0.21",
"grunt-contrib-concat": "^0.4.0"
},
"devDependencies": {
"eslint": "^4.18.1",
"husky": "^0.14.3",
"prettier": "1.10.2",
"pretty-quick": "^1.4.1"
},
"keywords": [
"SMS",
"Master System",
"Sega Master System",
"GG",
"Game Gear",
"Sega Game Gear",
"emulator",
"dynamic recompilation"
],
"license": "GPL-3.0",
"private": false
}