-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.58 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.58 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
56
57
58
59
60
{
"name": "terminal-byte-editor",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:guzmonne/terminal-byte-editor.git",
"author": "Guzman Monne <guzmonne@hotmail.com>",
"license": "GPL-2.0-only",
"devDependencies": {
"@babel/core": "^7.12.10",
"@types/overlayscrollbars": "^1.12.0",
"autoprefixer": "^9.8.6",
"cli-real-favicon": "^0.0.8",
"jest": "^26.4.2",
"parcel-bundler": "^1.12.4",
"postcss-modules": "^3.2.2",
"prop-types": "^15.7.2"
},
"scripts": {
"test": "jest --watchAll",
"coverage": "jest --coverage",
"predev": "rm -Rf dist",
"dev": "parcel src/index.html",
"prebuild": "rm -Rf dist",
"build": "parcel build src/index.html",
"postbuild": "cp src/browserconfig.xml src/favicon.ico src/humans.txt LICENSE src/robots.txt dist",
"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": {
"@tippyjs/react": "^4.2.0",
"overlayscrollbars": "^1.10.0",
"overlayscrollbars-react": "^0.2.2",
"react": "^16.4.0",
"react-clipboard.js": "^2.0.16",
"react-dom": "^16.13.1",
"simplebar-react": "^2.3.0"
}
}