-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
113 lines (113 loc) · 3.4 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
{
"name": "object-agent",
"version": "1.6.1",
"description": "A javascript library for working with objects",
"type": "module",
"keywords": [
"object",
"get",
"set",
"has",
"unset",
"diff",
"forIn",
"forOwn",
"same",
"traverse",
"isEmpty",
"isEqual",
"deepEqual",
"intersection",
"superimpose",
"combo",
"combination",
"mix",
"powerset"
],
"license": "MIT",
"author": {
"name": "Darren Paul Wright",
"email": "Darren@DarrenPaulWright.com",
"url": "https://www.darrenpaulwright.com"
},
"homepage": "https://github.com/DarrenPaulWright/object-agent#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/DarrenPaulWright/object-agent.git"
},
"bugs": {
"url": "https://github.com/DarrenPaulWright/object-agent/issues"
},
"main": "index.js",
"types": "types/index.d.ts",
"files": [
"/types",
"/src"
],
"sideEffects": false,
"browserslist": [
"defaults"
],
"badges": {
"npm": {
"image": "https://img.shields.io/npm/v/object-agent.svg",
"url": "https://npmjs.com/package/object-agent"
},
"build": {
"base": "https://travis-ci.org/DarrenPaulWright/",
"image": "object-agent.svg?branch=master",
"url": "object-agent"
},
"coverage": {
"base": "https://coveralls.io/",
"image": "repos/github/DarrenPaulWright/object-agent/badge.svg?branch=master",
"url": "github/DarrenPaulWright/object-agent?branch=master"
},
"deps": {
"image": "https://david-dm.org/DarrenPaulWright/object-agent.svg",
"url": "https://david-dm.org/DarrenPaulWright/object-agent"
},
"size": {
"base": "https://packagephobia.now.sh/",
"image": "badge?p=object-agent",
"url": "result?p=object-agent"
},
"vulnerabilities": {
"base": "https://snyk.io/test/github/DarrenPaulWright/object-agent",
"image": "/badge.svg?targetFile=package.json",
"url": "?targetFile=package.json"
},
"license": {
"image": "https://img.shields.io/github/license/DarrenPaulWright/object-agent.svg",
"url": "https://npmjs.com/package/object-agent/LICENSE.md"
}
},
"scripts": {
"test": "",
"test-watch": "",
"bench": "",
"preversion": "npm test && npm run docs && git add --all && git diff HEAD --quiet || git commit -m \"Updating docs\"",
"postversion": "npm publish",
"postpublish": "git push --follow-tags",
"pre-clean": "rm -rf node_modules && del /f package-lock.json",
"clean": "npm run pre-clean && npm install && npm audit fix",
"update": "ncu -u && git diff --quiet || npm install && npm audit fix",
"update-clean": "npm run pre-clean && npm run update",
"update-commit": "npm run update && npm test && git add --all && git diff HEAD --quiet || git commit -m \"Updating dependencies\"",
"update-patch": "npm run update && npm test && git add --all && git diff HEAD --quiet || git commit -m \"Updating dependencies\" && npm version patch",
"docs:readme": "jsdoc2md ./index.js src/**/*.js > README.md -t node_modules/dmd-readable/overview.hbs --plugin dmd-readable/overview-plugin.js",
"docs:all": "exec-each --out docs/{basefile}.md src/**/*.js jsdoc2md -- {path} -t node_modules/dmd-readable/docs.hbs --plugin dmd-readable",
"docs:types": "rm -rf types && tsc",
"docs": "run-p docs:*"
},
"devDependencies": {
"display-value": "^2.2.0",
"dmd-readable": "^1.2.4",
"exec-each": "0.0.3",
"jsdoc-to-markdown": "^8.0.0",
"npm-run-all": "^4.1.5",
"on-change": "^4.0.2",
"type-enforcer": "^1.2.5",
"typescript": "^5.2.2"
}
}