-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 799 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 799 Bytes
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
{
"name": "lexus",
"version": "0.2.0",
"description": "A small, portable JSON language for querying data.",
"repository": {
"type": "git",
"url": "https://github.com/appcelerator/lexus.git"
},
"author": "Isaac Whitfield",
"readmeFilename": "README.md",
"bin": {
"lexus-spec": "./bin/lexus-spec"
},
"scripts": {
"lint": "eslint --ext=js ./",
"test": "npm run lint ; mocha --ui tdd --recursive test/"
},
"dependencies": {
"ajv": "^8.11.0",
"async": "^3.2.3",
"eslint-plugin-mocha": "^10.0.4",
"js-yaml": "^4.1.0",
"ngeohash": "^0.6.3",
"sb-promisify": "2.0.2"
},
"devDependencies": {
"dep-validate": "1.2.0",
"eslint": "^8.15.0",
"eslint-config-axway": "^7.0.0",
"mocha": "^10.0.0",
"should": "^13.2.3"
}
}