-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 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": "browser-please",
"version": "1.0.0",
"description": "Yet another library to determine the browser by useragent",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "gulp",
"mocha": "mocha",
"eslint": "./node_modules/.bin/eslint src/parseBrowser.js",
"test": "npm run mocha && npm run eslint",
"pages": "node -e \"require('gh-pages').publish('gh-pages', function(){})\""
},
"keywords": [
"useragent",
"browser"
],
"author": "Kozlov Sergey <dartess@mail.ru>",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"gulp": "^4.0.0",
"gulp-babel": "^7.0.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^3.0.0",
"jsdom": "^11.9.0",
"mocha": "^5.1.1"
},
"dependencies": {
"gh-pages": "^1.1.0"
}
}