-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.56 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
{
"name": "blur-overlay",
"version": "1.0.3",
"description": "A jQuery plugin for displaying an overlay on a webpage that blurs the content behind it ",
"main": "dist/blur-overlay.js",
"engines": {
"node": ">=6.0.0"
},
"files": [
"dist/"
],
"scripts": {
"build:babel": "babel src/ -d dist/",
"build:uglify": "uglifyjs dist/blur-overlay.js -o dist/blur-overlay.min.js -c -m",
"build": "npm run build:babel && npm run build:uglify",
"demo": "hs -o -p 8000 .",
"lint": "eslint -c .eslintrc.js src/ spec/ --fix",
"start": "watch 'npm run lint && npm test && npm run build' src/ spec/",
"test": "karma start karma.conf.js --single-run",
"test:serve": "karma start karma.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bencentra/blur-overlay.git"
},
"keywords": [
"jquery",
"blur",
"overlay"
],
"author": "Ben Centra <blcentra@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bencentra/blur-overlay/issues"
},
"homepage": "https://github.com/bencentra/blur-overlay#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"eslint": "^3.1.1",
"eslint-config-airbnb-base": "^4.0.2",
"eslint-plugin-import": "^1.11.0",
"http-server": "^0.9.0",
"jasmine-core": "^2.4.1",
"karma": "^1.1.1",
"karma-babel-preprocessor": "^6.0.1",
"karma-coverage": "^1.1.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.1",
"uglify-js": "^2.7.0",
"watch": "^0.19.1"
}
}