forked from ghosh/Micromodal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.57 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
{
"name": "micromodal",
"version": "0.3.2",
"description": "Tiny javascript library for creating accessible modal dialogs",
"main": "dist/micromodal.js",
"module": "dist/micromodal.es.js",
"jsdelivr": "dist/micromodal.min.js",
"scripts": {
"test": "cypress run",
"test:gui": "cypress open",
"bundlesize": "bundlesize",
"styles:dev": "postcss example/assets/styles/style.css -c -o example/site.min.css -w",
"styles:build": "NODE_ENV=production postcss example/assets/styles/style.css -c -o example/site.min.css",
"scripts:dev": "rollup -c -w",
"scripts:build:es": "NODE_ENV=production TARGET=es rollup -c",
"scripts:build:umd": "NODE_ENV=production TARGET=umd rollup -c && minify dist/micromodal.js --output dist/micromodal.min.js",
"demo:scripts": "minify dist/micromodal.js example/assets/scripts/prism.js --output example/site.min.js",
"demo:watch": "watch 'yarn demo:scripts' dist/",
"livereload": "reload -b -s --dir example --port 5000",
"build": "concurrently \"run-p scripts:build:*\" \"yarn styles:build\"",
"dev": "concurrently \"yarn scripts:dev\" \"yarn styles:dev\" \"yarn demo:watch\" \"yarn livereload\""
},
"keywords": [
"a11y",
"modal",
"accesible"
],
"author": "Indrashish Ghosh",
"license": "MIT",
"repository": "https://github.com/ghosh/micromodal",
"bugs": {
"url": "https://github.com/ghosh/micromodal/issues"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-latest": "^6.24.1",
"bundlesize": "^0.16.0",
"concurrently": "^3.5.1",
"cssnano": "^3.10.0",
"cypress": "^2.1.0",
"eslint": "^4.18.2",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"minifier": "^0.8.1",
"npm-run-all": "^4.1.2",
"postcss-cli": "^5.0.0",
"postcss-import": "^11.0.0",
"postcss-scss": "^1.0.3",
"postcss-uncss": "^0.16.1",
"reload": "^2.2.1",
"rollup": "^0.56.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-conditional": "^1.1.1",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-uglify-es": "^0.0.1",
"rollup-watch": "^4.3.1",
"tachyons": "^4.9.1",
"uncss": "^0.16.1",
"watch": "^1.0.2"
},
"bundlesize": [
{
"path": "./dist/micromodal.min.js",
"maxSize": "2.5 kB"
}
]
}