-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 1.73 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
62
63
64
65
66
67
68
69
70
{
"name": "jinqu-odata",
"version": "1.2.0",
"description": "Jinqu OData implementation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"linq",
"jinqu",
"odata",
"query",
"ajax",
"typescript"
],
"files": [
"dist",
"lib",
"index.ts",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/jin-qu/jinqu-odata"
},
"scripts": {
"test": "mocha --reporter spec",
"cover": "nyc --reporter text-summary mocha --reporter spec",
"coveralls": "nyc mocha && nyc report --reporter=text-lcov | coveralls",
"karma": "karma start karma.conf.js",
"build": "rimraf dist | tsc",
"prepare": "npm run build"
},
"author": "Umut Özel",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/chai-as-promised": "^7.1.3",
"@types/fetch-mock": "^7.3.2",
"@types/mocha": "^8.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"fetch-mock": "^9.10.6",
"jinqu-array-extensions": "^1.1.1",
"karma": "^6.3.14",
"karma-chai": "^0.1.0",
"karma-chai-as-promised": "^0.1.2",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-firefox-launcher": "^1.3.0",
"karma-edgium-launcher": "^4.0.0-0",
"puppeteer": "^22.12.0",
"karma-mocha": "^2.0.1",
"karma-typescript": "^5.0.3",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.0.0",
"node-fetch": "^2.6.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"typescript": "^4.6.3",
"whatwg-fetch": "^3.4.0"
},
"dependencies": {
"jinqu": "^1.1.3",
"jinqu-fetch": "^1.1.1",
"jokenizer": "^0.4.5"
}
}