-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
64 lines (64 loc) · 1.42 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
{
"name": "dot-object",
"description": "dot-object makes it possible to transform and read (JSON) objects using dot notation.",
"version": "2.1.5",
"author": {
"name": "Rob Halff",
"email": "rob.halff@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/rhalff/dot-object.git"
},
"bugs": {
"url": "https://github.com/rhalff/dot-object/issues"
},
"license": "MIT",
"main": "index",
"bin": "./bin/dot-object",
"scripts": {
"test": "gulp test",
"watch": "gulp watch",
"lint": "gulp lint",
"dist": "gulp dist"
},
"standard": {
"globals": [
"it",
"describe",
"beforeEach"
]
},
"devDependencies": {
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"gulp": "^4.0.2",
"gulp-beautify": "^3.0.0",
"gulp-eslint": "^6.0.0",
"gulp-headerfooter": "^1.0.3",
"gulp-mocha": "^7.0.2",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8",
"mocha": "8.x.x",
"should": "13.x.x",
"underscore.string": "latest"
},
"keywords": [
"json",
"object",
"filter",
"transform",
"dot notation",
"dot"
],
"dependencies": {
"commander": "^6.1.0",
"glob": "^7.1.6"
},
"packageManager": "yarn@4.1.1"
}