-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.16 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
{
"name": "@cloudelements/jmespath",
"description": "JMESPath implementation in JavaScript",
"version": "0.23.0",
"author": {
"name": "James Saryerwinnie",
"email": "[email protected]",
"url": "http://jamesls.com/"
},
"homepage": "https://github.com/cloud-elements/jmespath.js",
"contributors": [
{
"name": "Darren Mothersele",
"email": "[email protected]",
"url": "https://daz.is"
}
],
"devDependencies": {
"conventional-changelog-cli": "^2.0.31",
"eslint": "^6.8.0",
"mocha": "^7.1.0"
},
"dependencies": {},
"main": "./src/jmespath.js",
"bin": "./bin/jmespath",
"types": "./src/jmespath.d.ts",
"directories": {
"test": "test"
},
"engines": {
"node": ">= 12.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/cloud-elements/jmespath.js"
},
"license": "Apache-2.0",
"keywords": [
"jmespath",
"jsonpath",
"json",
"xpath"
],
"scripts": {
"changelog": "conventional-changelog -p angular -i ./CHANGELOG.md -s",
"eslint": "eslint 'bin/**/*' 'src/**/*.js' 'test/**/*.js'",
"mocha": "mocha test/",
"test": "npm run eslint && npm run mocha"
}
}