-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.46 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
{
"name": "new-group-nav",
"version": "2.1.3",
"private": true,
"source": "src/index.html",
"scripts": {
"prestart": "rm -rf dist && mkdir dist && npm run build:manifest && npm run build:icon",
"start": "parcel watch",
"prebuild": "rm -rf dist && rm -f new-group-nav.zip",
"build": "parcel build",
"build:icon": "svgexport ./icon/icon_svgexport.json",
"build:manifest": "cp manifest.json dist/manifest.json",
"build:zip": "cp -r dist new-group-nav-extension && zip -r new-group-nav.zip new-group-nav-extension && rm -rf new-group-nav-extension",
"postbuild": "npm run build:icon && npm run build:manifest && npm run build:zip",
"test": "jest --watch"
},
"repository": "https://github.com/JRJurman/new-group-nav",
"license": "MIT",
"author": {
"name": "Jesse Jurman",
"email": "[email protected]",
"url": "https://jrjurman.com"
},
"dependencies": {
"@parcel/babel-preset-env": "^2.5.0",
"@parcel/transformer-inline-string": "^2.5.0",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@tram-one/tram-logo": "^4.1.0",
"@types/chrome": "^0.0.188",
"@types/jest": "^27.5.1",
"babel-jest": "^28.1.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-transform-stub": "^2.0.0",
"open-props": "^1.3.16",
"parcel": "^2.5.0",
"prettier": "^2.6.2",
"svgexport": "^0.4.2",
"tram-one": "^13.2.1",
"ts-jest": "^28.0.2"
}
}