-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.22 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
{
"name": "retroify.js",
"version": "0.2.1",
"description": "A library to apply retro 8-bit styling to web pages",
"repository": {
"type": "git",
"url": "https://github.com/rbonestell/retroify.js.git"
},
"bugs": {
"url": "https://github.com/rbonestell/retroify.js/issues"
},
"keywords": [
"css",
"style",
"theme",
"retro",
"8-bit",
"pixel",
"pixelated",
"game",
"gaming",
"nintendo",
"arcade",
"nostalgia",
"vintage",
"filter",
"effect",
"web",
"browser",
"transform",
"stylesheet",
"ui"
],
"private": false,
"main": "src/retroify.js",
"files": [
"src/retroify.js",
"out/retroify.min.js"
],
"author": "Bobby Bonestell <rbonestell@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"minify": "mkdirp out && uglifyjs src/retroify.js --compress --warn --comments --output out/retroify.min.js",
"test": "jest"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
"^.+\\.js$": "babel-jest"
}
},
"devDependencies": {
"jest": "^29.7.0",
"mkdirp": "^3.0.1",
"uglify-js": "^3.19.3",
"@babel/preset-env": "^7.0.0",
"jest-environment-jsdom": "^29.0.0"
}
}