-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "rooverlay",
"version": "1.2.3",
"description": "Overlay library to display image/video galleries, html or iframes",
"homepage": "https://github.com/Tickaroo/rooverlay",
"author": "Anton Pawlik <[email protected]> (http://antpaw.org)",
"license": "MIT",
"keywords": [
"overlay",
"gallery",
"image-gallery",
"fancybox"
],
"repository": {
"type": "git",
"url": "[email protected]/Tickaroo/rooverlay.git"
},
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "webpack && cp ./src/index.scss ./dist/index.css && cp ./src/images.scss ./dist/images.css",
"watch": "webpack --watch",
"test": "mocha",
"testdbg": "mocha --debug-brk",
"lint": "jshint **.js **/*.js **/**/*.js",
"coverage": "istanbul cover node_modules/.bin/_mocha"
},
"devDependencies": {
"chai": "^3.5.0",
"codecov.io": "^0.1.6",
"istanbul": "^0.4.2",
"jsdom": "^9.4.5",
"jshint": "^2.9.1",
"mocha": "^3.0.2",
"should": "^11.1.0",
"webpack": "^1.13.1"
}
}