New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

@json-api/query-parser

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@json-api/query-parser - npm Package Compare versions

Comparing version

to
0.1.0

{
"name": "@json-api/query-parser",
"version": "0.0.5",
"version": "0.1.0",
"description": "A query parser for the ?filter and ?sort param syntax used by @json-api/server",

@@ -9,7 +9,7 @@ "main": "index.js",

"clean": "rimraf build",
"copy": "cpr src/ build/",
"build:parser": "pegjs --allowed-start-rules Sort,Filter --dependency Identifier:./Identifier.js -o build/parser.js build/grammar.pegjs",
"build": "npm run clean && npm run copy && npm run build:parser",
"test": "npm run build && npm run test:built",
"test:built": "NODE_ENV=testing mocha --recursive test/ --full-trace --check-leaks",
"build:parser": "pegjs --allowed-start-rules Sort,Filter -o src/parser.js src/grammar.pegjs",
"build:ts": "echo Using TypeScript && tsc --version && tsc --pretty",
"build": "npm run clean && npm run build:parser && npm run build:ts",
"test": "npm run build:parser && npm run test:built",
"test:built": "NODE_ENV=testing mocha --compilers ts:ts-node/register --recursive test/ --full-trace --check-leaks",
"prepare": "npm run build"

@@ -20,2 +20,5 @@ },

"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^5.0.0",
"@types/ramda": "^0.25.21",
"chai": "^4.1.2",

@@ -25,3 +28,5 @@ "cpr": "^3.0.1",

"pegjs": "^0.10.0",
"rimraf": "^2.6.2"
"rimraf": "^2.6.2",
"ts-node": "^5.0.1",
"typescript": "^2.8.1"
},

@@ -35,3 +40,6 @@ "engines": {

"build/"
]
],
"dependencies": {
"ramda": "^0.25.0"
}
}