-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.06 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
{
"name": "z-deduper",
"version": "1.0.3",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"author": {
"email": "info@norapps.net",
"name": "Ikbel",
"url": "https://zapier.norapps.net"
},
"scripts": {
"dist": "tsc",
"test": "jest",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run dist",
"prepublishOnly": "npm test",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ikbelkirasan/z-deduper.git"
},
"keywords": [
"Zapier",
"Deduper",
"Polling",
"Trigger"
],
"dependencies": {
"axios": "^0.21.1",
"lodash": "^4.17.20",
"object-hash": "^2.1.1",
"uuid-by-string": "^3.0.2"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.166",
"@types/object-hash": "^1.3.4",
"jest": "^26.6.3",
"nock": "^13.0.5",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}