-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
52 lines (52 loc) · 1.76 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
{
"name": "@sap_oss/odata-library",
"version": "2.4.0",
"description": "OData client for testing Netweawer OData services.",
"main": "index.js",
"types": "./@types/index.d.ts",
"dependencies": {
"http-parser-js": "^0.5.0",
"jsdom": "^16.5.0",
"lodash": "^4.17.10",
"tough-cookie": "^4.0.0",
"xml2js": "^0.5.0"
},
"scripts": {
"test": "nyc --reporter=lcov --reporter=text mocha --recursive ./test/unit/ ./test/func/",
"unit": "mocha --recursive ./test/unit/ ./test/func/",
"unit-cov": "nyc --reporter=lcov --reporter=text mocha --recursive ./test/unit/",
"func-cov": "nyc --reporter=lcov --reporter=text mocha --recursive ./test/func/",
"unit-debug": "mocha --inspect-brk --recursive ./test/unit/ ./test/func/",
"validate": "npm run validate:eslint && npm run validate:prettier && npm run validate:test",
"validate:prettier": "prettier --check \"lib/**/*.js\" \"test/**/*.js\"",
"prettier": "prettier --write \"lib/**/*.js\" \"test/**/*.js\"",
"validate:eslint": "eslint \"lib/**/*.js\" \"test/**/*.js\"",
"validate:test": "mocha -R progress --recursive ./test/unit/ ./test/func/",
"watch": "nodemon -e js,xml -x \"npm run validate\"",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "[email protected]:SAP/odata-library.git"
},
"keywords": [
"OData"
],
"engines" : { "node" : ">18.15.0" },
"author": "SAP SE",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^18.11.18",
"eslint": "^8.8.0",
"husky": "^7.0.4",
"mocha": "^11.1.0",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"proxyquire": "^2.1.3",
"simple-git": "^3.1.1",
"sinon": "^13.0.1",
"typescript": "^4.9.4"
}
}