-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.58 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
{
"name": "ts-odata-client",
"version": "2.0.0-dev.local",
"description": "OData TypeScript Client",
"main": "/index.js",
"types": "/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"test": "vitest run",
"test-ci": "vitest run --coverage.enabled true",
"lint": "npx eslint ./src ./test && npx prettier -c src test",
"lint:fix": "npx eslint --fix ./src ./test && npx prettier -w src test",
"pack": "npm run build && cpx {package.json,README.md} dist && npm pack ./dist --dry-run",
"publish-npm": "npm run build && cpx {package.json,README.md} dist && npm publish ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cbrianball/ts-odata-client.git"
},
"keywords": [
"odata",
"typescript"
],
"author": "Brian Ball",
"license": "ISC",
"bugs": {
"url": "https://github.com/cbrianball/ts-odata-client/issues"
},
"homepage": "https://github.com/cbrianball/ts-odata-client#readme",
"sideEffects": false,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@vitest/coverage-v8": "^1.1.0",
"chai": "^4.3.4",
"cpx": "^1.5.0",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"rimraf": "^5.0.5",
"ts-node": "^10.0.0",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
}
}