-
Notifications
You must be signed in to change notification settings - Fork 235
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.57 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
{
"name": "micromodal",
"version": "0.7.0",
"description": "Tiny javascript library for creating accessible modal dialogs",
"main": "dist/micromodal.js",
"cdn": "dist/micromodal.min.js",
"module": "dist/micromodal.es.js",
"files": [
"dist"
],
"jsdelivr": "dist/micromodal.min.js",
"author": "Indrashish Ghosh",
"license": "ISC",
"repository": "https://github.com/ghosh/micromodal",
"bugs": {
"url": "https://github.com/ghosh/micromodal/issues"
},
"homepage": "https://github.com/ghosh/micromodal#readme",
"scripts": {
"dev": "concurrently \"rollup -c -w\" \"npx serve ./docs\"",
"build": "rollup -c",
"deploy": "npm run build && npm publish",
"docs:sync": "cp dist/micromodal.es.js docs/scripts/micromodal.js",
"test:serve": "npx serve . --listen 1234",
"test:gui": "cypress open --project tests",
"test:cli": "cypress run --project tests"
},
"keywords": [
"a11y",
"modal",
"accessible"
],
"engines": {
"node": ">=10"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-json": "^4.1.0",
"browserlist": "^1.0.1",
"concurrently": "^6.0.2",
"cypress": "^9.0.0",
"eslint": "^8.2.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"express": "^4.17.1",
"rollup": "^2.0.2",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2"
}
}