forked from getoutreach/extensibility-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 2.01 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
{
"name": "@outreach/extensibility-sdk",
"license": "MIT",
"version": "0.5.64",
"private": false,
"contributors": [
"Outreach Client Extensibility Team <[email protected]>"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"check": "npm run build && npm run lint && npm run lint-docs && npm run test",
"dev": "tsc --watch",
"build": "tsc",
"package": "yarn dts-bundle && yarn copy-to-dist",
"dts-bundle": "npx dts-bundle --configJson dts-bundle.json",
"copy-to-dist": "npx copyfiles \"./build/**/*.js*\" dist -a -u 1",
"lint": "npx eslint ./src/**/*.ts",
"lint-docs": "yarn prettier --check docs/**/*.md README.md && markdownlint docs README.md",
"pretty:fix-docs": "prettier --write docs/**/*.md README.md",
"pretty:fix": "prettier --write '**/*.{ts,json,md,yml,yaml}'",
"test": "jest",
"deploy": "npm run check && npm run package && npm publish",
"tag-version": "PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag $PACKAGE_VERSION && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getoutreach/extensibility-sdk.git"
},
"bugs": {
"url": "https://github.com/getoutreach/extensibility-sdk/issues"
},
"homepage": "https://github.com/getoutreach/extensibility-sdk#readme",
"devDependencies": {
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"copyfiles": "^2.4.1",
"dts-bundle": "^0.7.3",
"eslint": "^7.20.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"jest": "^26.6.3",
"mdx-local-link-checker": "^2.1.1",
"markdownlint-cli": "^0.31.1",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"typescript": "^4.6.4"
}
}