-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.39 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@maseya/z3pr",
"version": "1.0.1",
"scripts": {
"test": "mocha -r esm \"./spec/**/*_spec.js\"",
"build": "browserify -d -s z3pr -t babelify -p tinyify src/index.js | exorcist dist/z3pr-umd.map.js > dist/z3pr-umd.js"
},
"dependencies": {
"lodash": "^4.17.20"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babelify": "^10.0.0",
"browserify": "^16.5.2",
"chai": "^4.2.0",
"esm": "^3.2.25",
"exorcist": "^1.0.1",
"tinyify": "^3.0.0"
},
"main": "src/index.js",
"files": [
"src/**",
"*.md"
],
"babel": {
"presets": [
"@babel/env"
]
},
"browserslist": [
"defaults"
],
"description": "Randomize palettes in The Legend of Zelda: A Link to the Past.",
"license": "LGPL-3.0+",
"repository": {
"type": "git",
"url": "https://github.com/Maseya/z3pr-js.git"
},
"homepage": "https://github.com/Maseya/z3pr-js#readme.md",
"bugs": {
"url": "https://github.com/Maseya/z3pr-js/issues"
},
"author": "Nelson Garcia <swr.ngarcia@gmail.com> (https://github.com/bonimy)",
"contributors": [
"Rebelus Quo <rebelusquo@tutanota.com>"
],
"keywords": [
"legend of zelda",
"link to the past",
"loz",
"lttp",
"alttp",
"alttpr",
"palette",
"randomizer",
"rom hacking",
"snes",
"super nes",
"super",
"nintendo"
]
}