@takeshape/branches 9.1.6 → 9.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +13 -13
package/package.json
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@takeshape/branches",
|
|
3
|
-
"version": "9.1
|
|
3
|
+
"version": "9.2.1",
|
|
4
4
|
"description": "Shared branch-related code.",
|
|
5
|
+
"homepage": "https://www.takeshape.io",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "github.com:takeshape/takeshape.git"
|
|
9
|
+
},
|
|
10
|
+
"license": "UNLICENSED",
|
|
11
|
+
"author": "asprouse",
|
|
5
12
|
"main": "dist/index.js",
|
|
6
13
|
"module": "es/index.js",
|
|
7
14
|
"types": "dist/index.d.ts",
|
|
@@ -9,24 +16,17 @@
|
|
|
9
16
|
"dist",
|
|
10
17
|
"es"
|
|
11
18
|
],
|
|
12
|
-
"homepage": "https://www.takeshape.io",
|
|
13
|
-
"repository": {
|
|
14
|
-
"type": "git",
|
|
15
|
-
"url": "github.com:takeshape/takeshape.git"
|
|
16
|
-
},
|
|
17
|
-
"author": "asprouse",
|
|
18
|
-
"license": "UNLICENSED",
|
|
19
19
|
"engines": {
|
|
20
20
|
"node": ">=16"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"build": "pnpm build:types && pnpm build:js && pnpm build:es && pnpm build:copy",
|
|
24
|
-
"build:types": "tsc --emitDeclarationOnly --project tsconfig.json",
|
|
25
|
-
"build:js": "cross-env BABEL_MODULES=commonjs babel src --out-dir dist --extensions \".js,.ts\" --ignore '**/__tests__'",
|
|
26
|
-
"build:es": "cross-env BABEL_MODULES=es babel src --out-dir es --extensions \".js,.ts\" --ignore '**/__tests__'",
|
|
27
24
|
"build:copy": "cp -rf build/src/* dist/",
|
|
28
|
-
"
|
|
29
|
-
"
|
|
25
|
+
"build:es": "cross-env BABEL_MODULES=es babel src --out-dir es --extensions \".js,.ts\" --ignore '**/__tests__'",
|
|
26
|
+
"build:js": "cross-env BABEL_MODULES=commonjs babel src --out-dir dist --extensions \".js,.ts\" --ignore '**/__tests__'",
|
|
27
|
+
"build:types": "tsc --emitDeclarationOnly --project tsconfig.json",
|
|
28
|
+
"lint": "eslint . --ext .js,.ts,.json",
|
|
29
|
+
"lint:code:ci": "pnpm lint --quiet --format junit -o \"${HOME}/test-results/${npm_package_name#*\\/}/eslint-results.xml\"",
|
|
30
30
|
"todo": "leasot 'src/**/*.{js,jsx,ts,tsx}'"
|
|
31
31
|
}
|
|
32
32
|
}
|