forked from eventbrite/eventbrite-sdk-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.9 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "eventbrite",
"version": "0.0.0-semantically-released",
"description": "The official JavaScript SDK for the Eventbrite v3 API",
"author": "Eventbrite <[email protected]>",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"jsnext:main": "lib/esm/index.js",
"browser": "dist/eventbrite.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"dist"
],
"keywords": [
"rest",
"api",
"sdk",
"events",
"tickets",
"eventbrite"
],
"repository": {
"type": "git",
"url": "https://github.com/eventbrite/eventbrite-sdk-javascript.git"
},
"bugs": {
"url": "https://github.com/eventbrite/eventbrite-sdk-javascript/issues"
},
"homepage": "https://github.com/eventbrite/eventbrite-sdk-javascript#readme",
"license": "MIT",
"scripts": {
"format": "prettier-eslint --write",
"lint": "jest --config=jest-lint.config.js",
"precommit": "lint-staged",
"gen:declarations": "tsc --p ./tsconfig.build.json",
"build": "npm-run-all build:targets gen:declarations",
"build:targets": "gulp build",
"prebuild:targets": "rm -rf dist && rm -rf lib",
"postbuild": "bundlesize",
"start": "jest --watch",
"test": "jest --config=jest-test.config.js",
"type-check": "jest --config=jest-tsc.config.js",
"validate": "jest"
},
"lint-staged": {
"*.{ts,js}": [
"yarn format",
"git add"
]
},
"dependencies": {
"isomorphic-fetch": "^3.0.0"
},
"resolutions": {
"babel-core": "^7.0.0-bridge.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-external-helpers": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-modules-umd": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"babel-eslint": "^10.1.0",
"bundlesize": "^0.18.0",
"eslint": "^7.17.0",
"eslint-config-eventbrite": "^5.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-typescript": "^0.14.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-debug": "^4.0.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8",
"husky": "^4.3.6",
"jest": "^26.6.3",
"jest-runner-eslint": "^0.10.0",
"jest-runner-tsc": "^1.6.0",
"lint-staged": "^10.5.3",
"npm-run-all": "^4.1.2",
"prettier-eslint-cli": "^5.0.0",
"rollup": "^2.36.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-uglify": "^6.0.4",
"tslib": "^2.1.0",
"typescript": "~4.1.3",
"typescript-babel-jest": "^1.0.6"
},
"bundlesize": [
{
"path": "./dist/eventbrite.min.js",
"threshold": "4Kb"
}
],
"jest": {
"projects": [
"jest-test.config.js",
"jest-lint.config.js",
"jest-tsc.config.js"
]
},
"prettier": {
"tabWidth": 4,
"semi": true,
"singleQuote": true
}
}