forked from deoostfrees/Parvus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.6 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
{
"name": "parvus",
"version": "1.2.1",
"description": "An accessible, open-source image lightbox with no dependencies.",
"main": "dist/js/parvus.js",
"style": "dist/css/parvus.css",
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/preset-env": "^7.13.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"core-js": "^3.9.0",
"node-sass": "^5.0.0",
"postcss": "^8.2.8",
"postcss-preset-env": "^6.7.0",
"rollup": "^2.39.1",
"rollup-plugin-license": "^2.2.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"standard": "^16.0.3",
"stylelint": "^13.11.0"
},
"browserslist": [
"last 2 versions",
"not <= 1%",
"not IE 10",
"not IE 11"
],
"scripts": {
"build": "npm run buildJs && npm run buildCss",
"buildJs": "rollup -c --environment BUILDJS",
"buildCss": "rollup -c --environment BUILDCSS",
"buildWatch": "npm run buildWatchJs && npm run buildWatchCss",
"buildWatchJs": "rollup -c -w --environment BUILDJS",
"buildWatchCss": "rollup -c -w --environment BUILDCSS",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/deoostfreese/parvus.git"
},
"keywords": [
"lightbox",
"accessible",
"a11y",
"javascript",
"vanilla",
"scss",
"css"
],
"author": "de Oostfreese",
"license": "MIT",
"bugs": {
"url": "https://github.com/deoostfreese/parvus/issues"
},
"homepage": "https://github.com/deoostfreese/parvus"
}