-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
35 lines (35 loc) · 1014 Bytes
/
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
{
"name": "outdated-browser-rework",
"description": "Detects outdated browsers and asks users to upgrade to a new version. Handles mobile devices!",
"version": "3.0.1",
"main": "index.js",
"dependencies": {
"ua-parser-js": "^0.7.22"
},
"author": "Mike MacCana <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/mikemaccana/outdated-browser-rework.git"
},
"keywords": [
"outdated",
"outdated-browser",
"upgrade",
"old",
"browser",
"internet-explorer"
],
"devDependencies": {
"browserify": "^16.2.3",
"jest": "^26.5.3",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"uglify-js": "^3.4.9"
},
"license": "MIT",
"scripts": {
"build": "jest && node-sass style.scss dist/style.css && browserify index.js -d -s outdatedBrowserRework -o dist/outdated-browser-rework.js && uglifyjs dist/outdated-browser-rework.js --ie8 -c -m > dist/outdated-browser-rework.min.js",
"watch": "nodemon --exec 'npm run build' --ignore dist",
"test": "jest"
}
}