-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
53 lines (53 loc) · 1.37 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
{
"name": "ondc-node",
"version": "1.1.6",
"description": "Integrate ONDC in your JavaScript applications easily.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js",
"dev": "node --inspect=0.0.0.0 -r ts-node/register src/index.ts",
"build": "rm -rf dist && tsc -p .",
"prepublish": "rm -rf dist && tsc -p .",
"publish-if-version-changed": "publish"
},
"files": [
"dist",
"./index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ukrocks007/ondc-node.git"
},
"keywords": [
"ONDC",
"ondc-node",
"node.js",
"integration",
"ondc middleware"
],
"author": "Utkarsh Mehta <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ukrocks007/ondc-node/issues"
},
"homepage": "https://github.com/ukrocks007/ondc-node#readme",
"dependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.42",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"libsodium-wrappers": "^0.7.9",
"node-fetch": "^2.6.7",
"publish": "^0.6.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/libsodium-wrappers": "^0.7.9",
"@types/node-fetch": "^2.6.2",
"@types/request": "^2.48.8",
"@types/uuid": "^8.3.4"
}
}