-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.54 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
{
"name": "israel-postal-service-api",
"version": "3.0.3",
"description": "Israel postal office pricing calculator",
"main": "./dist/index.js",
"browser": {
"request": "xhr",
"./dist/src/dynamic/xhr-node.js": "./dist/src/dynamic/xhr-browser.js"
},
"homepage": "https://bennymeg.github.io/IsraelPostalServiceAPI/",
"scripts": {
"compile": "tsc && XCOPY /S /y .\\mapping\\data\\* .\\dist\\mapping\\data\\",
"start": "npm run lint && npm run compile && node ./dist/index.js",
"test": "npm run start && mocha --require ts-node/register 'test/**/*.ts' --recursive || ECHO.",
"doc": "npm run start && jsdoc2md ./dist/index.js > ./docs/api/service.md && jsdoc2md ./dist/src/response-parser.js > ./docs/api/response-parser.md",
"lint": "jshint .",
"lint:all": "jshint --exclude-path=.gitignore ."
},
"keywords": [
"Israel",
"Postal",
"Service",
"Shipping",
"Shipment",
"Delivery",
"Package",
"Mail",
"Pricing",
"Calculator",
"ngx"
],
"author": "Benny Megidish",
"repository": {
"type": "git",
"url": "https://github.com/bennymeg/IsraelPostalServiceAPI.git"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^5.2.7",
"@types/node": "^12.20.28",
"@types/request": "^2.48.7",
"chai": "^4.3.4",
"jshint": "^2.13.1",
"mocha": "^6.2.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.10",
"xmlhttprequest": "^1.8.0"
},
"dependencies": {
"request": "^2.88.2",
"xhr": "^2.6.0"
}
}