-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
67 lines (67 loc) · 2.76 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
{
"name": "@hubspot/calling-extensions-sdk",
"version": "0.8.1-alpha.1",
"description": "A JavaScript SDK for integrating calling apps into HubSpot.",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "webpack",
"build:test": "npm run build && npm run test",
"cover": "open coverage/lcov-report/index.html",
"eslint": "eslint src --ext .js",
"eslint:fix": "eslint src --ext .js --fix",
"preversion": "npm run build:test",
"postversion": "git push --follow-tags",
"publish:alpha:current": "npm publish --access public --tag alpha",
"publish:alpha:patch": "npm version patch --preid alpha && npm run publish:alpha:current",
"publish:alpha:minor": "npm version preminor --preid alpha && npm run publish:alpha:current",
"publish:alpha:major": "npm version premajor --preid alpha && npm run publish:alpha:current",
"publish:alpha": "npm version prerelease --preid alpha && npm run publish:alpha:current",
"publish:beta": "npm version prerelease --preid beta && npm publish --access public --tag beta",
"publish:rc": "npm version prerelease --preid rc && npm publish --access public --tag rc",
"publish:patch": "npm version patch && npm publish --access public",
"publish:minor": "npm version minor && npm publish --access public",
"publish:major": "npm version major && npm publish --access public",
"test:build": "npx webpack --config webpack-test.config.js --mode development",
"test:watch": "npx webpack --config webpack-test.config.js --mode development --watch",
"test:serve": "cross-env NODE_ENV=test npm run test:watch & jasmine-browser-runner serve --config=test/support/jasmine-browser.json",
"test": "cross-env NODE_ENV=test npm run test:build && jasmine-browser-runner runSpecs --config=test/support/jasmine-browser.json --browser=headlessChrome"
},
"main": "./dist/main.js",
"files": [
"dist/**/*",
"src/",
"index.js",
"src/typedefs.js"
],
"types": "./dist/types/index.d.ts",
"module": "./index.js",
"author": "",
"license": "MIT",
"engines": {
"node": ">=14"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.21.4",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"babel-loader": "^8.0.6",
"cross-env": "^7.0.3",
"eslint": "^8.41.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jasmine-browser-runner": "^1.3.0",
"jasmine-core": "^4.6.0",
"prettier": "^2.8.8",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1"
}
}