-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.52 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
{
"name": "seshy",
"version": "0.2.8",
"description": "Chrome extension for effortlessly syncing browsing sessions.",
"scripts": {
"build": "snowpack build",
"build:watch": "snowpack build --watch",
"dev": "snowpack dev",
"lint": "eslint src/ test/",
"lint:fix": "npm run lint -- --fix",
"test": "ava **/*.test.js --fail-fast --serial --timeout=2m",
"test:dev": "PWDEBUG=1 npm test",
"unit": "ava **/*.spec.js --config ava.config.unit.js --serial",
"unit:dev": "npm run unit -- --watch"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/moderatemisbehaviour/seshy.git"
},
"keywords": [
"chrome",
"extension",
"session",
"sync",
"tab",
"browsing"
],
"author": "Daniel Metcalfe",
"license": "MIT",
"bugs": {
"url": "https://github.com/moderatemisbehaviour/seshy/issues"
},
"homepage": "https://github.com/moderatemisbehaviour/seshy#readme",
"dependencies": {
"@material/dialog": "^12.0.0",
"@material/list": "^12.0.0",
"@material/ripple": "^12.0.0",
"@material/textfield": "^12.0.0",
"@material/theme": "^12.0.0",
"@material/top-app-bar": "^12.0.0",
"debounce": "^1.2.1",
"hyperdiff": "^2.0.8"
},
"devDependencies": {
"@snowpack/plugin-sass": "^1.4.0",
"ava": "^3.15.0",
"chrome-webstore-upload": "^1.0.0",
"eslint": "^7.24.0",
"playwright": "^1.17.1",
"sinon": "^7.5.0",
"sinon-chrome": "^3.0.1",
"snowpack": "^3.8.6",
"zip-dir": "^2.0.0"
}
}