-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "modal-actions",
"version": "0.0.13",
"description": "Simple & customizable modal with navigation, input and more in vanilla JS",
"private": true,
"source": "src/index.js",
"exports": {
"default": "./dist/modal-actions.min.js"
},
"amdName": "ModalActions",
"scripts": {
"build": "microbundle -o dist/modal-actions.min.js -f umd --sourcemap false --no-pkg-main",
"eslint": "eslint src/*",
"prettier": "prettier --write .",
"test": "jest --detectOpenHandles --forceExit",
"test-watch": "jest --detectOpenHandles --watchAll",
"watch": "yarn run build watch"
},
"keywords": [
"modal",
"alert"
],
"author": "Pythonic Café",
"license": "(LGPL-3.0)",
"dependencies": {},
"files": [
"dist/modal-actions.min.js",
"dist/modal-actions.min.css",
"README.md"
],
"jest": {
"setupFilesAfterEnv": [
"./jestGlobalSetup.js"
]
},
"devDependencies": {
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.2.2",
"lite-server": "^2.6.1",
"microbundle": "^0.15.1",
"nunjucks": "^3.2.3",
"prettier": "^2.7.1",
"puppeteer": "^19.2.0",
"sass": "^1.56.1"
}
}