forked from pipedrive/app-extensions-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.59 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
{
"name": "@pipedrive/app-extensions-sdk",
"main": "./dist/index.js",
"typing": "dist/index",
"devEngines": {
"node": "^16",
"npm": "^8"
},
"files": [
"dist"
],
"version": "0.9.0",
"description": "Client SDK for Pipedrive app extensions",
"scripts": {
"test": "jest --passWithNoTests",
"coverage": "npm test -- --coverage",
"prepublish": "npm run build",
"build": "rollup -c",
"lint:eslint": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint:tsc": "tsc --noEmit",
"lint": "npm run lint:tsc && npm run lint:eslint",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,json,yml}' && eslint --fix '**/*.{js,jsx,ts,tsx}'",
"version": "changelog-updater && git add CHANGELOG.md",
"watch": "rollup --watch -c",
"watch:sync": "npm-utils watch",
"prepare": "husky install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pipedrive/app-extensions-sdk.git"
},
"author": "",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/pipedrive/app-extensions-sdk/issues"
},
"homepage": "https://github.com/pipedrive/app-extensions-sdk#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.16.0",
"changelog-updater": "^2.0.2",
"eslint": "^8.11.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"rollup": "^2.66.1",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "^4.6.2"
}
}