-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.3 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
{
"name": "modalblanc",
"version": "1.1.1",
"description": "A simpel modal",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"chai": "^3.3.0",
"mocha": "^2.3.3",
"browserify": "^12.0.1",
"uglify-js": "^2.6.1",
"watchify": "^3.6.1"
},
"scripts": {
"watch": "watchify index.js -d --s Modalblanc -o dist/modalblanc.js -v",
"watch-scss": "sass --watch sass:dist",
"build-debug": "browserify index.js -d --s Modalblanc > dist/modalblanc.js",
"build-min": "browserify index.js --s Modalblanc | uglifyjs -c > dist/modalblanc.min.js",
"build-js": "npm run build-debug && npm run build-min",
"build-css": "sass sass/modalblanc.scss dist/modalblanc.css",
"build-files": "npm run build-js && npm run build-css",
"test": "npm run test-phantom && npm run test-mocha",
"test-phantom": "make test",
"test-mocha": "mocha-phantomjs testRunner.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Blancframe/modalblanc.git"
},
"keywords": [
"Modal",
"lightbox",
"box"
],
"author": "Jhon Majoor <jhonmajoor@gmail.com> (http://blancframe.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Blancframe/modalblanc/issues"
},
"homepage": "https://github.com/Blancframe/modalblanc#readme"
}