forked from Modernizr/Modernizr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
118 lines (118 loc) · 2.86 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
{
"name": "modernizr",
"version": "4.0.0-alpha",
"description": "Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user’s browser.",
"main": "./lib/cli.js",
"bin": "./bin/modernizr",
"bugs": "https://github.com/Modernizr/Modernizr/issues",
"homepage": "https://github.com/Modernizr/Modernizr",
"repository": "https://github.com/Modernizr/Modernizr.git",
"license": "MIT",
"author": {
"name": "Modernizr",
"url": "https://modernizr.com/"
},
"contributors": [
{
"name": "Faruk Ates",
"url": "https://twitter.com/KuraFire"
},
{
"name": "Paul Irish",
"url": "https://twitter.com/paul_irish"
},
{
"name": "Alex Sexton",
"url": "https://twitter.com/SlexAxton"
},
{
"name": "Ryan Seddon",
"url": "https://twitter.com/ryanseddon"
},
{
"name": "Patrick Kettner",
"url": "https://twitter.com/patrickkettner"
},
{
"name": "Stu Cox",
"url": "https://twitter.com/stucoxmedia"
},
{
"name": "Richard Herrera",
"url": "https://twitter.com/doctyper"
},
{
"name": "Veeck",
"url": "https://twitter.com/hansalbern"
}
],
"dependencies": {
"doctrine": "^3.0.0",
"file": "^0.2.2",
"lodash": "^4.17.21",
"markdown-it": "^13.0.1",
"mkdirp": "^3.0.1",
"requirejs": "^2.3.6",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/register": "^7.22.5",
"auto-changelog": "^2.4.0",
"chai": "^4.3.7",
"codecov": "^3.8.3",
"del": "^6.1.1",
"eslint": "^8.45.0",
"eslint-plugin-jsdoc": "^46.4.4",
"find-parent-dir": "^0.3.1",
"fs-extra": "^11.1.1",
"globby": "^11.1.0",
"gulp": "^4.0.2",
"gulp-connect": "^5.7.0",
"gulp-eslint": "^6.0.0",
"gulp-pug": "^5.0.0",
"joi": "^17.9.2",
"jquery": "^3.7.0",
"json3": "^3.3.3",
"mocha": "^10.2.0",
"mocha-headless-chrome": "^4.0.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"serve-static": "^1.15.0",
"sinon": "^15.2.0",
"ua-parser-js": "^1.0.35"
},
"scripts": {
"--- DEFAULT SCRIPTS ---": "",
"start": "gulp default",
"test": "nyc gulp test",
"--- GULP SCRIPTS ---": "",
"clean": "gulp clean",
"lint": "gulp eslint",
"--- MODERNIZR SCRIPTS ---": "",
"serve-gh-pages": "gulp serve:gh-pages",
"update-gh-pages": "scripts/generate-gh-pages.sh",
"update-changelog": "auto-changelog --commit-limit false --package",
"update-license": "node scripts/generate-license.js && git add LICENSE"
},
"engines": {
"node": ">=16"
},
"files": [
"LICENSE",
"README.md",
"bin/",
"feature-detects/",
"lib/",
"src/"
],
"keywords": [
"modernizr",
"html5",
"css3",
"javascript",
"browser",
"feature detection"
]
}