-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.4 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.4 KB
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
{
"name": "terminal-byte",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:guzmonne/terminal-byte.git",
"author": "Guzman Monne <guzmonne@hotmail.com>",
"license": "GPL-2.0-only",
"scripts": {
"dev": "parcel src/index.html --port 1235",
"build": "parcel build src/index.html",
"postbuild": "cp src/browserconfig.xml src/favicon.ico src/humans.txt LICENSE src/robots.txt dist",
"test": "jest --watch",
"coverage": "jest --coverage",
"favicon": "real-favicon generate faviconDescription.json faviconData.json src",
"postfavicon": "real-favicon inject faviconData.json src *.html"
},
"jest": {
"moduleNameMapper": {
"^/(.*)$": "<rootDir>/src/$1"
},
"verbose": true,
"transform": {
"^.+\\.js$": "babel-jest"
},
"globals": {
"NODE_ENV": "test"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
]
},
"browser": {
"fs": false
},
"dependencies": {
"clipboard": "^2.0.6",
"html2canvas": "^1.0.0-rc.7",
"parcel": "^2.0.0-nightly.442",
"prism": "^4.1.2",
"prismjs": "^1.21.0",
"simplebar": "^6.0.0-beta.6"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.11.5",
"babel-jest": "^26.3.0",
"cli-real-favicon": "^0.0.8",
"jest": "^26.4.2",
"parcel-bundler": "^1.12.4"
}
}