-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.66 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
60
61
{
"name": "odatafy-parser",
"version": "1.3.0",
"description": "generate odatafy ast from odata query parameters",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"odata",
"odata-v4",
"odatafy",
"parser"
],
"scripts": {
"test": "nyc mocha -r ts-node/register --exit \"./test/**/*.test.ts\" --timeout 0",
"build": "tsc",
"build-and-run": "tsc && node dist/index.js",
"docs": "npx typedoc index.ts",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc \"./src/**/*.ts\" --write",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier-format && npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gang-of-Fork/odatafy-parser.git"
},
"author": "Gang of Fork",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Gang-of-Fork/odatafy-parser/issues"
},
"homepage": "https://github.com/Gang-of-Fork/odatafy-parser#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"prettier": "^2.8.4",
"typedoc": "^0.22.18",
"typescript": "^4.6.4"
},
"dependencies": {
"@types/assert": "^1.5.6",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.18",
"assert": "^2.0.0",
"find-matching-bracket": "^1.0.3",
"mathjs": "^10.6.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"peggy": "^1.2.0",
"querystring": "^0.2.1",
"ts-node": "^10.8.0"
}
}