-
Notifications
You must be signed in to change notification settings - Fork 169
/
package.json
59 lines (59 loc) · 1.51 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
{
"name": "chocolat",
"version": "1.1.3",
"description": "Responsive Lightbox Plugin",
"main": "dist/js/chocolat.cjs.js",
"module": "dist/js/chocolat.esm.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run prettier && rollup -c",
"dev": "rollup -c -w",
"test": "mocha-chrome test/index.html",
"release": "yarn version --patch && git push origin HEAD --follow-tags",
"prettier": "./node_modules/.bin/prettier src/js/*.js test/*.js --write"
},
"dependencies": {
"core-js": "^3.18.3",
"es6-promise": "^4.2.5"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.15.8",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"jquery": "^3.3.1",
"mocha": "^5.2.0",
"mocha-chrome": "^1.1.0",
"postcss-url": "^8.0.0",
"prettier": "1.15.2",
"prettier-check": "^2.0.0",
"rollup": "^0.68.1",
"rollup-plugin-babel": "^4.1.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-postcss": "^1.2.0",
"sinon": "^7.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicolas-t/Chocolat.git"
},
"keywords": [
"lightbox",
"plugin",
"responsive"
],
"author": "Nicolas Turlais",
"licenses": [
{
"type": "GPLv3",
"url": "https://github.com/nicolas-t/Chocolat/blob/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/nicolas-t/Chocolat/issues"
},
"homepage": "http://chocolat.insipi.de"
}