-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
92 lines (92 loc) · 1.98 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": "normalize-pkg",
"description": "Normalize values in package.json using the map-schema library.",
"version": "0.5.0",
"homepage": "https://github.com/jonschlinkert/normalize-pkg",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Brian Woodward <[email protected]> (https://twitter.com/doowb)",
"Jon Schlinkert <[email protected]> (http://twitter.com/jonschlinkert)",
"Peter deHaan (http://about.me/peterdehaan)"
],
"funding": "https://github.com/sponsors/jonschlinkert",
"repository": "jonschlinkert/normalize-pkg",
"bugs": {
"url": "https://github.com/jonschlinkert/normalize-pkg/issues"
},
"license": "MIT",
"files": [
"bin",
"index.js",
"lib"
],
"main": "index.js",
"bin": {
"normalize-pkg": "bin/cli.js"
},
"engines": {
"node": ">=10"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"arr-union": "^3.1.0",
"export-files": "^2.1.1",
"get-value": "^3.0.1",
"kind-of": "^6.0.3",
"map-schema": "^0.3.0",
"matched": "^5.0.0",
"minimist": "^1.2.0",
"mixin-deep": "^2.0.1",
"object.pick": "^1.3.0",
"omit-empty": "^1.0.0",
"parse-git-config": "^3.0.0",
"repo-utils": "^0.4.1",
"semver": "^7.1.3",
"stringify-author": "^0.1.3",
"write-json": "^3.0.1"
},
"devDependencies": {
"delete": "^1.1.0",
"gitty": "^3.7.1",
"gulp-format-md": "^2.0.0",
"mocha": "^7.1.0"
},
"keywords": [
"config",
"fix",
"json",
"normalize",
"package",
"package-json",
"pkg",
"properties",
"values"
],
"verb": {
"run": true,
"toc": "collapsible",
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"update"
]
},
"reflinks": [
"map-schema",
"project-name",
"verb",
"verb-readme-generator"
],
"lint": {
"reflinks": true
}
}
}