-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
39 lines (39 loc) · 1.2 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
{
"name": "odata-fluent-query",
"version": "2.7.3",
"description": "A fluent OData query builder",
"author": "Eduardo Rosostolato",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"homepage": "https://github.com/rosostolato/odata-fluent-query#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/rosostolato/odata-fluent-query.git"
},
"bugs": {
"url": "https://github.com/rosostolato/odata-fluent-query/issues"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --nolazy --inspect-brk ./node_modules/.bin/jest --runInBand --no-cache --watch",
"coverage": "jest --coverage",
"ci": "jest --coverage --verbose",
"build": "rimraf dist && tsc && copyfiles package.json README.md LICENSE dist && npm run postBuildMsg",
"postBuildMsg": "echo \"Please update the main entry on dist/package.json\""
},
"dependencies": {
"validator": "^13.7.0"
},
"devDependencies": {
"@types/jest": "^29.1.1",
"@types/validator": "^13.7.7",
"copyfiles": "^2.4.1",
"jest": "^29.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}