-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
63 lines (63 loc) · 1.32 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
{
"name": "customizr",
"description": "Build out a lean, mean Modernizr machine.",
"version": "3.0.2",
"main": "src",
"bin": {
"customizr": "bin/customizr"
},
"license": "MIT",
"bugs": "https://github.com/Modernizr/customizr/issues",
"homepage": "https://github.com/Modernizr/customizr",
"repository": "https://github.com/Modernizr/customizr.git",
"author": {
"name": "Modernizr",
"url": "https://modernizr.com/"
},
"contributors": [
{
"name": "Richard Herrera",
"url": "https://twitter.com/doctyper"
}
],
"dependencies": {
"colors": "^1.4.0",
"cross-spawn": "^7.0.3",
"fast-deep-equal": "^3.1.3",
"glob": "^11.0.0",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"modernizr": "^3",
"nopt": "^8.0.0",
"promised-io": "^0.3.6",
"yargs": "^17.7.2"
},
"devDependencies": {
"chai": "^4.5.0",
"fs-extra": "^11.2.0",
"mocha": "^10.8.2",
"nexpect": "^0.6.0"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
},
"engines": {
"node": ">=18"
},
"keywords": [
"modernizr",
"customizr"
],
"scripts": {
"pretest": "node test/pretest.js",
"test": "node test/runner.js"
},
"customizr": {
"dest": "build/modernizr-package.js",
"files": {
"src": [
"test/{js,css}/*"
]
}
}
}