This repository was archived by the owner on Mar 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.59 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.59 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
61
{
"name": "@pangolinjs/visual-review",
"description": "Create issues from an easy to use interface which can be integrated into any website.",
"version": "0.3.0",
"license": "MIT",
"homepage": "https://visual-review.pangolinjs.org",
"author": {
"name": "Fynn Becker",
"email": "fynn@hey.com"
},
"repository": {
"type": "git",
"url": "https://github.com/pangolinjs/visual-review"
},
"keywords": [
"issues",
"github",
"gitlab",
"visual",
"review"
],
"scripts": {
"dev": "rollup --config --watch",
"build": "rollup --config",
"docs": "npm run build && cp dist/* docs",
"lint": "eslint \"src/**\"",
"prepack": "npm run build",
"release": "standard-version"
},
"files": [
"dist",
"src"
],
"browser": "dist/bundle.min.js",
"main": "src/main.js",
"dependencies": {
"@mdi/js": "^5.3.45",
"js-cookie": "^3.0.0-rc.0",
"ky": "^0.20.0",
"svelte": "^3.24.0"
},
"devDependencies": {
"cssnano": "^4.1.10",
"eslint": "^7.4.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-svelte3": "^2.7.3",
"rollup": "^2.21.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^3.1.2",
"rollup-plugin-serve": "^2.0.0-beta.0",
"rollup-plugin-svelte": "^5.2.3",
"rollup-plugin-terser": "^6.1.0",
"standard-version": "^8.0.0"
}
}