-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 991 Bytes
/
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
{
"name": "@eventfarm/javascript-sdk",
"description": "Official Event Farm Javascript SDK",
"version": "12.0.0",
"main": "./dist",
"types": "./dist",
"authors": [
{
"name": "Jason Raimondi",
"email": "jason@raimondi.us"
},
{
"name": "Jeremy Collins",
"email": "jdodsoncollins@gmail.com"
},
{
"name": "Kyle Conkright",
"email": "kyleconkright@gmail.com"
}
],
"license": "MIT",
"scripts": {
"package": "run-s clean build push",
"build": "tsc",
"pretty": "prettier --single-quote --trailing-comma all --write 'src/**/*.ts'",
"clean": "rm -rf dist/*",
"push": "npm publish --access public"
},
"dependencies": {
"axios": "^0.21.2",
"buffer": "^6.0.3",
"jwt-decode": "^2.2.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jwt-decode": "^2.2.1",
"npm-run-all": "^4.1.5",
"prettier": "1.16.1",
"ts-node": "^6.2.0",
"typescript": "^4.9.5"
}
}