-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.45 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
{
"name": "retrotxt",
"version": "2.0.1",
"description": "RetrotxtJS correctly displays legacy ASCII and NFO text on a modern UTF-8 HTML page.",
"keywords": [
"html",
"ascii",
"nfo",
"cp437",
"iso8859",
"text",
"textfile"
],
"homepage": "https://github.com/bengarrett/retrotxtjs",
"bugs": {
"url": "https://github.com/bengarrett/retrotxtjs/issues"
},
"license": "LGPL-3.0",
"author": "Ben Garrett",
"files": [
"dist/css",
"dist/font",
"dist/js"
],
"main": "dist/js/retrotxt-init.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bengarrett/retrotxtjs.git"
},
"devDependencies": {
"eslint": "^9.4.0",
"globals": "^15.4.0",
"grunt": "~1.6.1",
"grunt-banner": "^0.6.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-connect": "^4.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^5.0.0",
"grunt-contrib-qunit": "^10.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-eslint": "^25.0.0",
"grunt-stylelint": "^0.20.0",
"http-server": "^14.1.1",
"prettier": "^3.3.1",
"qunit": "~2.22.0",
"stylelint": "^16.6.1",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.4"
},
"scripts": {
"build": "npx grunt default",
"lint": "npx grunt lint",
"test": "npx grunt test",
"serve": "npx http-server dist --cors --port 8087"
}
}