-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.4 KB
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": "@gofynd/fp-signature",
"version": "2.0.1",
"description": "Fynd platform's signature logic",
"main": "./dist/cjs/index.js",
"module": "./dist/mjs/index.js",
"browser": "./dist/web/fp-signature.min.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "npm run clear && concurrently 'npm:build:cjs' 'npm:build:mjs' 'npm:build:types' 'npm:build:web'",
"build:cjs": "tsc -p tsconfig-cjs.json",
"build:mjs": "tsc -p tsconfig-mjs.json",
"build:web": "webpack",
"build:types": "tsc -p tsconfig-types.json",
"prepublishOnly": "npm run build",
"clear": "rimraf ./dist",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/gofynd/fp-signature.git"
},
"homepage": "https://github.com/gofynd/fp-signature.git",
"author": {
"name": "Fynd Developer",
"email": "dev@fynd.com"
},
"keywords": [
"fp-signature",
"request-signature",
"signature",
"fynd-platform",
"gofynd",
"fdkaxios"
],
"license": "ISC",
"dependencies": {
"crypto-js": "^4.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.1",
"concurrently": "^8.2.0",
"jest": "^29.6.1",
"querystring-es3": "^0.2.1",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}