-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.19 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
{
"name": "@shiftcode/branch-utilities",
"version": "3.1.0",
"description": "Utilities for local and ci to get branch name and stage",
"repository": "https://github.com/shiftcode/sc-commons-public",
"license": "MIT",
"author": "shiftcode GmbH <[email protected]>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "tsc",
"lint": "npm run lint:src:fix",
"lint:ci": "npm run lint:src",
"lint:src": "eslint ./src",
"lint:src:fix": "eslint ./src --cache --fix",
"lint:staged": "eslint --fix --cache",
"prettier": "prettier --write --config ../../.prettierrc.yml '{src,e2e,test}/**/*.ts'",
"prettier:staged": "prettier --write --config ../../.prettierrc.yml",
"prepublish": "node ../publish-helper/dist/prepare-dist.js",
"test": "NODE_OPTIONS=\"--experimental-vm-modules --trace-warnings\" npx jest --config jest.config.js",
"test:ci": "npm run test",
"test:watch": "npm run test -- --watch"
},
"peerDependencies": {
"tslib": "^2.3.0"
},
"publishConfig": {
"directory": "dist"
}
}