-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.46 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "frowser",
"version": "1.1.1",
"description": "feature based browser detection",
"keywords": [
"browser",
"useragent",
"user-agent",
"parser",
"ua",
"detection",
"feature",
"frowser",
"react"
],
"homepage": "https://github.com/mkkhedawat/frowser",
"author": "Manish Khedawat <[email protected]>",
"contributors": [
{
"name": "Manish Khedawat",
"url": "https://www.linkedin.com/in/mkkhedawat/"
}
],
"main": "build/es5.js",
"browser": "build/es5.js",
"module": "src/index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/mkkhedawat/frowser.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.6",
"@babel/helper-compilation-targets": "^7.23.6",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.23.6",
"@babel/register": "^7.22.15",
"ava": "^6.0.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^9.1.3",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-istanbul": "^6.1.1",
"compression-webpack-plugin": "^10.0.0",
"core-js": "^3.34.0",
"coveralls": "^3.1.1",
"docdash": "^2.0.2",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-import": "^2.29.1",
"gh-pages": "^6.1.0",
"jsdoc": "^4.0.2",
"nyc": "^15.1.0",
"prettier": "3.1.1",
"sinon": "^17.0.1",
"testem": "^3.11.0",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"yamljs": "^0.3.0"
},
"ava": {
"require": [
"@babel/register"
]
},
"bugs": {
"url": "https://github.com/mkkhedawat/frowser/issues"
},
"directories": {
"test": "test"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"generate-and-deploy-docs": "npm run generate-docs && gh-pages --dist docs --dest docs",
"watch": "webpack --watch --config webpack.config.js",
"prepublishOnly": "npm run build",
"lint": "eslint ./src",
"format": "prettier --check '*.{js,jsx,html,json}'",
"format-fix": "prettier --write '*/**/*.{js,jsx,html,json}'",
"testem": "testem",
"test": "nyc --reporter=html --reporter=text ava",
"test:watch": "ava --watch",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"generate-docs": "jsdoc -c jsdoc.json"
},
"license": "MIT"
}