-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.34 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "stimulus-photoswipe",
"version": "5.1.1",
"description": "A Stimulus controller for PhotoSwipe.",
"keywords": [
"typescript",
"stimulus",
"stimulus-controller",
"photoswipe",
"lightbox"
],
"author": "John Doe <johndoe@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/souk4711/stimulus-photoswipe"
},
"bugs": {
"url": "https://github.com/souk4711/stimulus-photoswipe/issues"
},
"main": "dist/index.umd.js",
"module": "dist/index.js",
"style": "dist/style.css",
"types": "dist/types/index.d.ts",
"files": [
"dist/index.js",
"dist/index.umd.js",
"dist/style.css",
"dist/types/**/*"
],
"scripts": {
"prepare": "husky install",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --fix .",
"lint:check": "eslint .",
"prebuild": "yarn clean",
"build": "tsc --noEmit false --declaration true --emitDeclarationOnly true --outDir dist/types && rollup -c",
"dev": "rollup -wc",
"pretest": "yarn build",
"test": "karma start",
"test:watch": "yarn test --auto-watch --no-single-run",
"prerelease": "yarn build && git --no-pager diff && echo && npm pack --dry-run",
"release": "npm publish",
"clean": "rimraf ./dist"
},
"dependencies": {
"photoswipe": ">= 5"
},
"peerDependencies": {
"@hotwired/stimulus": ">= 3"
},
"devDependencies": {
"@hotwired/stimulus": ">= 3",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"chai": "^4.3.6",
"eslint": "^8.24.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.1",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-fixture": "^0.2.6",
"karma-mocha": "^2.0.1",
"karma-webpack": "^5.0.0",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"puppeteer": "^18.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup-plugin-scss": "^3.0.0",
"sass": "^1.55.0",
"tslib": "^2.4.0",
"typescript": "^4.8.4",
"webpack": "^5.74.0"
}
}