This repository has been archived by the owner on Jun 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 2.93 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "low-browser",
"version": "0.3.0",
"description": "Internet Explorer and Microsoft Edge browsers definition",
"main": "dist/low-browser.umd.js",
"module": "dist/low-browser.esm.js",
"types": "dist/low-browser.d.ts",
"scripts": {
"bundlesize": "bundlesize",
"doctoc": "doctoc README.md",
"lint": "tslint -p ./",
"lint:fix": "tslint -p ./ --fix",
"compile": "tsc -d",
"cleanup:compiled": "rimraf compiled",
"cleanup:dist": "rimraf dist",
"cleanup:coverage": "rimraf .nyc_output coverage",
"cleanup": "run-s cleanup:*",
"bundle": "rollup -c",
"prebuild": "run-s cleanup lint",
"build": "run-s compile bundle",
"postbuild": "run-s cleanup:compiled",
"pretest": "run-s build",
"test": "run-s tests",
"tests": "nyc mocha --reporter dot && run-s bundlesize",
"coveralls": "nyc report --reporter=text-lcov | coveralls && run-s cleanup:coverage",
"prepublishOnly": "run-s doctoc test",
"prepack": "run-s build"
},
"bundlesize": [
{
"path": "dist/low-browser.umd.js",
"maxSize": "1.5 kb",
"compression": "gzip"
},
{
"path": "dist/low-browser.umd.min.js",
"maxSize": "1 kb",
"compression": "gzip"
},
{
"path": "dist/low-browser.esm.js",
"maxSize": "1.5 kb",
"compression": "gzip"
},
{
"path": "dist/low-browser.esm.min.js",
"maxSize": "1 kb",
"compression": "gzip"
},
{
"path": "dist/low-browser.d.ts",
"maxSize": "10 kb",
"compression": "none"
}
],
"husky": {
"hooks": {
"pre-commit": "run-s doctoc test cleanup"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Arttse/low-browser.git"
},
"keywords": [
"agent",
"amd",
"browser",
"check",
"commonjs",
"definition",
"edge",
"explorer",
"ie",
"internet",
"internet explorer",
"low",
"low-browser",
"microsoft",
"server",
"side",
"small",
"tool",
"umd",
"user",
"useragent"
],
"author": {
"name": "Nikita Bystrov (Arttse)",
"url": "https://github.com/Arttse"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Arttse/low-browser/issues"
},
"homepage": "https://github.com/Arttse/low-browser",
"homepageShort": "https://git.io/fxB5i",
"devDependencies": {
"bundlesize": "^0.17.0",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"doctoc": "^1.3.1",
"husky": "^1.1.2",
"lodash.camelcase": "^4.3.0",
"lodash.pickby": "^4.6.0",
"lodash.startcase": "^4.4.0",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.3",
"nyc": "^13.1.0",
"rimraf": "^2.6.2",
"rollup": "^0.66.6",
"rollup-plugin-buble": "^0.19.4",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^3.0.0",
"rollup-plugin-uglify": "^6.0.0",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.1.3"
}
}