-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.29 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.29 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
{
"name": "object-grep",
"version": "2.2.0",
"description": "A javascript tool for searching text in keys and content inspired by linux grep",
"main": "./dist/index.js",
"module": "./src/index.js",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"lint": "eslint ./src",
"test": "jest",
"publish-patch": "npm run build && npm version patch && npm publish",
"publish-minor": "npm run build && npm version minor && npm publish",
"publish-major": "npm run build && npm version major && npm publish",
"update": "npx npm-check-updates -u && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ulitcos/object-grep.git"
},
"keywords": [
"grep",
"search in object",
"find in object",
"javascript",
"node.js"
],
"author": "Ruslan Krokhin <ulitcos@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ulitcos/object-grep/issues"
},
"homepage": "https://ulitcos.github.io/object-grep/",
"devDependencies": {
"@babel/core": "7.23.7",
"@babel/preset-env": "7.23.8",
"babel-jest": "29.7.0",
"eslint": "8.56.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.29.1",
"jest": "29.7.0",
"webpack": "5.89.0",
"webpack-cli": "5.1.4"
}
}