-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.35 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
55
56
{
"name": "@flowdegree/swarmapp-api",
"version": "2.12.1",
"description": "A javascript wrapper for swarmapp (foursquare) API",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest --coverage",
"release": "pnpm run build && changeset publish",
"clean": "shx rm -rf lib && shx rm -rf dist",
"lint": "tsc",
"build": "pnpm run clean && tsup src/index.ts --format cjs,esm --dts",
"test:example": "ts-node test/example.ts"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flowdegree/swarmapp-api.git"
},
"keywords": [
"api",
"javascript",
"typescript",
"ts",
"js",
"swarm",
"swarmapp",
"foursquare",
"wrapper",
"checkin"
],
"author": "Mohannad F. Otaibi",
"license": "ISC",
"bugs": {
"url": "https://github.com/flowdegree/swarmapp-api/issues"
},
"homepage": "https://github.com/flowdegree/swarmapp-api#readme",
"dependencies": {
"axios": "^0.26.1",
"dotenv": "^16.3.1",
"form-data": "^4.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/lodash": "^4.14.199",
"@types/node": "^18.15.11",
"jest": "^29.5.0",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typescript": "^5.0.3"
}
}