-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
54 lines (54 loc) · 1.91 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": "@getoutreach/extensibility-sdk",
"license": "MIT",
"version": "1.2.4",
"private": false,
"contributors": [
"Outreach Client Extensibility Team <cxt-sdk@outreach.io>"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"check": "npm run build && npm run lint && 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",
"pretty:fix": "prettier --write '**/*.{ts,json,md,yml,yaml}'",
"test": "jest",
"test:watch": "jest --watch",
"deploy": "npm run check && npm run package && npm publish",
"scopesgen": "node ./scripts/scopesgen.js",
"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",
"js-yaml": "^4.1.0",
"mdx-local-link-checker": "^2.1.1",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"typescript": "^4.6.4"
}
}