@slicemachine/init 1.1.16-dev-sentry.1 → 1.1.16-dev-ct-slice-delete.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/.depcheckrc CHANGED
@@ -1,4 +1,2 @@
1
- ignores: [
2
- "@types/jest"
3
- ]
1
+ ignores: []
4
2
  skip - missing: true
@@ -0,0 +1,7 @@
1
+ // babel.config.js
2
+ module.exports = {
3
+ presets: [
4
+ ["@babel/preset-env", { targets: { node: "current" } }],
5
+ "@babel/preset-typescript",
6
+ ],
7
+ };
package/jest.config.js CHANGED
@@ -11,6 +11,7 @@ module.exports = {
11
11
  testEnvironment: "node",
12
12
  transform: {
13
13
  "^.+\\.(ts|tsx)$": "ts-jest",
14
+ "^.+\\.js$": "babel-jest",
14
15
  },
15
16
  testTimeout: 15000,
16
17
  testPathIgnorePatterns: ["/node_modules/", "/__stubs__/"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slicemachine/init",
3
- "version": "1.1.16-dev-sentry.1",
3
+ "version": "1.1.16-dev-ct-slice-delete.1",
4
4
  "description": "The easiest way to add Slice Machine to your project",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -16,13 +16,13 @@
16
16
  "prepublishOnly": "npm run test && npm run build",
17
17
  "test": "jest",
18
18
  "tsc": "tsc --project tsconfig.json --noEmit",
19
- "watch": "tsc --project tsconfig.json --noEmit --watch"
19
+ "tsc:watch": "tsc --project tsconfig.json --noEmit --watch"
20
20
  },
21
21
  "dependencies": {
22
22
  "@hapi/hapi": "^20.2.0",
23
- "@prismicio/types-internal": "^1.5.3",
24
- "@slicemachine/client": "1.1.16-dev-sentry.1",
25
- "@slicemachine/core": "1.1.16-dev-sentry.1",
23
+ "@prismicio/types-internal": "^0.2.8",
24
+ "@slicemachine/client": "1.1.16-dev-ct-slice-delete.1",
25
+ "@slicemachine/core": "1.1.16-dev-ct-slice-delete.1",
26
26
  "adm-zip": "^0.5.9",
27
27
  "analytics-node": "^6.0.0",
28
28
  "axios": "^0.24.0",
@@ -37,6 +37,9 @@
37
37
  "uuid": "^8.3.2"
38
38
  },
39
39
  "devDependencies": {
40
+ "@babel/core": "^7.15.8",
41
+ "@babel/preset-env": "^7.15.8",
42
+ "@babel/preset-typescript": "^7.15.0",
40
43
  "@rollup/plugin-replace": "^3.0.1",
41
44
  "@types/adm-zip": "^0.4.34",
42
45
  "@types/analytics-node": "^3.1.7",
@@ -49,6 +52,7 @@
49
52
  "@types/uuid": "^8.3.4",
50
53
  "@typescript-eslint/eslint-plugin": "^5.10.0",
51
54
  "@typescript-eslint/parser": "^5.10.0",
55
+ "babel-jest": "^27.0.2",
52
56
  "better-npm-audit": "^3.4.0",
53
57
  "depcheck": "^1.4.3",
54
58
  "eslint": "^7.32.0",
@@ -56,16 +60,16 @@
56
60
  "eslint-import-resolver-typescript": "^2.4.0",
57
61
  "eslint-plugin-import": "^2.24.0",
58
62
  "eslint-plugin-jest": "^24.4.0",
59
- "jest": "^29.3.1",
63
+ "jest": "^27.4.7",
60
64
  "mock-fs": "^5.1.2",
61
65
  "nock": "^13.1.3",
62
66
  "siroc": "^0.16.0",
63
67
  "stdout-stderr": "^0.1.13",
64
- "ts-jest": "^29.0.3",
68
+ "ts-jest": "^27.0.5",
65
69
  "typescript": "^4.4.3"
66
70
  },
67
71
  "engines": {
68
72
  "node": ">=14"
69
73
  },
70
- "gitHead": "efa4254b522a4e0f54da37fcc467c310697a35e0"
74
+ "gitHead": "098bfb5ee23ef51372122fdfa9da09f120a323f0"
71
75
  }