-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.96 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "smodale",
"version": "1.0.5",
"description": "A simple, light and highly customizable modal for Svelte",
"svelte": "src/index.js",
"module": "dist/index.mjs",
"main": "dist/index.js",
"types": "@types/index.d.ts",
"license": "MIT",
"homepage": "https://smodale.vercel.app",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": {
"name": "Skender Moglica",
"email": "moglica.s@gmail.com",
"url": "https://skendermoglica.it/"
},
"scripts": {
"build": "rollup -c",
"build:demo": "npm run build -- --environment demo",
"dev": "npm run build -- -w",
"prepublishOnly": "npm run build",
"lint": "eslint --fix --ext .svelte,.js src",
"lint:prettier": "prettier --write src/**/{*.svelte,*.js}",
"test": "jest",
"test:watch": "npm t -- --watch"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/runtime": "^7.13.17",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-image": "^2.0.6",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.2",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/svelte": "^3.0.3",
"autoprefixer": "^10.2.5",
"babel-jest": "^26.6.3",
"codyhouse-framework": "^2.8.7",
"core-js": "^3.11.0",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.2.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-svelte3": "^3.1.2",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"postcss": "^8.2.10",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^2.2.0",
"prismjs": "^1.23.0",
"rollup": "^2.45.2",
"rollup-plugin-browsersync": "^1.3.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-license": "^2.3.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.32.8",
"svelte": "^3.37.0",
"svelte-jester": "^1.5.0",
"svelte-notifications": "^0.9.9",
"svelte-preprocess": "^4.7.0"
},
"keywords": [
"svelte",
"modal",
"dialog",
"popup"
],
"files": [
"src",
"dist",
"types"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,scss,md,svelte,html}": "prettier --write",
"*.{svelte,js}": "eslint --fix --ext .js,.svelte"
},
"repository": {
"type": "git",
"url": "git://github.com/smoglica/smodale.git"
},
"bugs": {
"url": "https://github.com/smoglica/smodale/issues"
}
}