-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.11 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
{
"name": "@pipedrive/test-public-npm-module",
"version": "1.0.8",
"description": "Public NPM module for testing publishing workflow",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"devDependencies": {
"@types/jest": "29.5.10",
"jest": "29.7.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pipedrive/test-public-npm-module.git"
},
"author": "DevOPS Tooling",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"dev": "tsc -p ./tsconfig.json --watch --preserveWatchOutput",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"test": "jest"
},
"license": "SEE LICENSE IN LICENSE.MD",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/pipedrive/test-public-npm-module/issues"
},
"homepage": "https://github.com/pipedrive/test-public-npm-module#readme"
}