-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.51 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
{
"name": "scim-query-filter-parser",
"version": "2.0.4",
"description": "Parser for SCIM Filter Query Strings",
"main": "dist/index.js",
"scripts": {
"format": "prettier --list-different --write '**/*.{json,yml,md,ts}'",
"lint": "prettier -c '**/*.{json,yml,md,ts}' && eslint src --ext ts",
"generate": "apg -i grammar.abnf -o grammar.js",
"build": "rm -rf dist && tsc",
"build:development": "rm -rf dist && tsc --watch",
"test": "ava --verbose dist/*.test.js",
"test:development": "ava --verbose --watch dist/**/*.test.js",
"prepare": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-control-group/scim-query-filter-parser-js.git"
},
"keywords": [
"scim",
"scimplecloud",
"parser",
"filter"
],
"author": "Mike Marcacci <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/the-control-group/scim-query-filter-parser-js/issues"
},
"homepage": "https://github.com/the-control-group/scim-query-filter-parser-js#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"apg": "^3.1.1",
"ava": "^2.4.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"nodemon": "^1.19.4",
"prettier": "^1.19.1",
"typescript": "^3.7.2"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"apg-lib": "^3.2.0"
},
"types": "dist/index.d.ts"
}