@questwork/q-store-model 0.1.34 → 0.1.36

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 CHANGED
@@ -1,15 +1,21 @@
1
1
  {
2
2
  "name": "@questwork/q-store-model",
3
- "version": "0.1.34",
3
+ "version": "0.1.36",
4
4
  "description": "Questwork QStore Model",
5
- "main": "dist/index.min.js",
6
5
  "type": "module",
7
6
  "exports": {
8
7
  ".": {
9
8
  "require": "./dist/index.min.cjs",
10
- "default": "./dist/index.min.js"
9
+ "default": "./dist/q-store-model.min.js"
11
10
  }
12
11
  },
12
+ "scripts": {
13
+ "build": "cross-env NODE_ENV=production minimize=false gulp",
14
+ "build:umd": "cross-env NODE_ENV=production minimize=false gulp umd",
15
+ "build:wp": "cross-env NODE_ENV=production minimize=false gulp wp",
16
+ "lint": "eslint .",
17
+ "test:models": "NODE_ENV=test mocha --exit 'lib/models/test.setup.js' 'lib/models/**/*.spec.js'"
18
+ },
13
19
  "author": {
14
20
  "name": "Questwork Consulting Limited",
15
21
  "email": "info@questwork.com",
@@ -17,21 +23,18 @@
17
23
  },
18
24
  "license": "MIT",
19
25
  "dependencies": {
20
- "@questwork/q-utilities": "^0.1.3",
26
+ "@questwork/q-utilities": "^0.1.15",
21
27
  "lodash": "^4.17.21"
22
28
  },
23
29
  "devDependencies": {
24
- "@babel/core": "^7.17.8",
25
- "@babel/eslint-parser": "^7.17.0",
30
+ "@babel/core": "^7.27.1",
31
+ "@babel/eslint-parser": "^7.27.1",
26
32
  "babel-loader": "^8.2.4",
27
33
  "babel-plugin-component": "^1.1.1",
28
34
  "chai": "^4.3.6",
29
35
  "clean-webpack-plugin": "^4.0.0",
30
36
  "cross-env": "^7.0.3",
31
- "eslint": "^6.8.0",
32
- "eslint-config-airbnb-base": "^14.2.1",
33
- "eslint-plugin-import": "^2.25.4",
34
- "eslint-plugin-mocha": "^6.3.0",
37
+ "eslint": "^9.26.0",
35
38
  "gulp": "^4.0.2",
36
39
  "gulp-rename": "^2.0.0",
37
40
  "mocha": "^7.2.0",
@@ -41,11 +44,5 @@
41
44
  },
42
45
  "engines": {
43
46
  "node": ">=10.0.0"
44
- },
45
- "scripts": {
46
- "build": "cross-env NODE_ENV=production minimize=false gulp",
47
- "build:esm": "cross-env NODE_ENV=production minimize=false gulp esm",
48
- "lint": "eslint .",
49
- "test:models": "NODE_ENV=test mocha --exit 'lib/models/test.setup.js' 'lib/models/**/*.spec.js'"
50
47
  }
51
- }
48
+ }