-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.38 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
{
"name": "lodash-match-pattern",
"version": "2.3.1",
"description": "Validates a deep structured JSON pattern",
"main": "index.js",
"files": [
"index.js",
"lib",
"_parser.js",
"tonic_example.js"
],
"scripts": {
"test": "./node_modules/.bin/mocha './test/**/*.js'",
"build_parser": "./node_modules/.bin/pegjs -o _parser.js ./parser/matchpattern.pegjs",
"prepare": "npm run build_parser; node ./scripts/autodoc.js",
"lint": "node_modules/.bin/eslint index.js lib test"
},
"directories": {
"test": "test"
},
"repository": "https://github.com/mjhm/lodash-match-pattern",
"keywords": [
"checkit",
"lodash",
"deep",
"JSON",
"pattern",
"matching",
"cucumber",
"mocha",
"testing"
],
"author": "John McLaughlin",
"license": "MIT",
"bugs": {
"url": "https://github.com/mjhm/lodash-match-pattern/issues"
},
"homepage": "https://github.com/mjhm/lodash-match-pattern#readme",
"engines": {
"node": ">=10.0.0"
},
"tonicExampleFilename": "tonic_example.js",
"devDependencies": {
"ajv": "8.10.0",
"chai": "^4.3.6",
"eslint": "^8.9.0",
"mocha": "^9.2.0",
"pegjs": "^0.10.0",
"pegjs-backtrace": "^0.2.1",
"rewire": "^6.0.0",
"sinon": "^13.0.1",
"sinon-chai": "^3.7.0"
},
"dependencies": {
"chalk": "^4.1.0",
"he": "^1.2.0",
"lodash-checkit": "^2.4.1"
}
}