-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.06 KB
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
{
"name": "@degjs/object-utils",
"version": "3.0.1",
"description": "A utility library for working with JavaScript objects.",
"keywords": [
"objects",
"DEGJS"
],
"author": {
"name": "Aaron Ladage",
"email": "aladage@degdigital.com",
"url": "http://aaronladage.com"
},
"scripts": {
"test": "jest .",
"lint": "eslint ./src"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DEGJS/objectUtils.git"
},
"files": [
"src/objectUtils.js"
],
"main": "src/objectUtils.js",
"bugs": "https://github.com/DEGJS/objectUtils/issues",
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-jest": "^26.6.3",
"eslint": "^6.8.0",
"jest": "^26.6.3"
},
"dependencies": {
"isobject": "^3.0.1"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"publishConfig": {
"access": "public"
}
}