@cycjimmy/hello-github-package-npm 5.0.2 → 6.0.0

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2019 cycjimmy
3
+ Copyright (c) 2019-2022 cycjimmy
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,5 +1,5 @@
1
- /*!
2
- * @cycjimmy/hello-github-package-npm v5.0.2
1
+ /*!
2
+ * @cycjimmy/hello-github-package-npm v6.0.0
3
3
  * Homepage: https://github.com/cycjimmy/hello-github-package-npm#readme
4
4
  * Released under the MIT License.
5
5
  */
package/package.json CHANGED
@@ -1,21 +1,22 @@
1
1
  {
2
2
  "name": "@cycjimmy/hello-github-package-npm",
3
- "version": "5.0.2",
3
+ "version": "6.0.0",
4
4
  "description": "hello github package npm",
5
+ "type": "module",
5
6
  "main": "dist/hello-world.cjs.js",
6
7
  "module": "dist/hello-world.esm.js",
7
8
  "browser": "dist/hello-world.umd.min.js",
8
9
  "scripts": {
9
10
  "start": "npm run dev",
10
- "test": "jest --color --forceExit --detectOpenHandles",
11
- "coveralls": "jest --color --forceExit --detectOpenHandles --coverage",
12
- "lint": "eslint -c .eslintrc 'src/**/*.js'",
13
- "lint:fix": "eslint --fix -c .eslintrc 'src/**/*.js'",
14
- "dev": "cross-env NODE_ENV=development rollup -c rollup/rollup.config.dev.js --watch",
11
+ "test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --color --forceExit --detectOpenHandles",
12
+ "coveralls": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --color --forceExit --detectOpenHandles --coverage",
13
+ "lint": "eslint --ext .js,.cjs,.mjs -c .eslintrc .",
14
+ "lint:fix": "eslint --ext .js,.cjs,.mjs --fix -c .eslintrc . --fix",
15
+ "dev": "cross-env NODE_ENV=development rollup -c rollup/rollup.config.dev.mjs --watch",
15
16
  "build": "npm run build:prod:umd && npm run build:prod",
16
- "build:prod": "cross-env NODE_ENV=production rollup -c rollup/rollup.config.prod.js",
17
- "build:prod:umd": "cross-env NODE_ENV=production rollup -c rollup/rollup.config.dev.js",
18
- "build:deployment": "cross-env NODE_ENV=deployment rollup -c rollup/rollup.config.dev.js"
17
+ "build:prod": "cross-env NODE_ENV=production rollup -c rollup/rollup.config.prod.mjs",
18
+ "build:prod:umd": "cross-env NODE_ENV=production rollup -c rollup/rollup.config.dev.mjs",
19
+ "build:deployment": "cross-env NODE_ENV=deployment rollup -c rollup/rollup.config.dev.mjs"
19
20
  },
20
21
  "repository": {
21
22
  "type": "git",
@@ -39,30 +40,30 @@
39
40
  "access": "public"
40
41
  },
41
42
  "dependencies": {
42
- "@cycjimmy/sass-lib": "^1.0.3"
43
+ "@cycjimmy/sass-lib": "^2.0.0"
43
44
  },
44
45
  "devDependencies": {
45
- "@babel/core": "^7.16.0",
46
- "@babel/preset-env": "^7.16.0",
47
- "@cycjimmy/config-lib": "^1.7.1",
48
- "@rollup/plugin-babel": "^5.3.0",
49
- "@rollup/plugin-commonjs": "^21.0.1",
46
+ "@babel/core": "^7.17.7",
47
+ "@babel/preset-env": "^7.16.11",
48
+ "@cycjimmy/config-lib": "^3.0.5",
49
+ "@rollup/plugin-babel": "^5.3.1",
50
+ "@rollup/plugin-commonjs": "^21.0.2",
50
51
  "@rollup/plugin-eslint": "^8.0.1",
51
52
  "@rollup/plugin-json": "^4.1.0",
52
- "@rollup/plugin-node-resolve": "^13.0.6",
53
- "autoprefixer": "^10.4.0",
54
- "babel-jest": "^27.3.1",
53
+ "@rollup/plugin-node-resolve": "^13.1.3",
54
+ "autoprefixer": "^10.4.3",
55
+ "babel-jest": "^27.5.1",
55
56
  "coveralls": "^3.1.1",
56
57
  "cross-env": "^7.0.3",
57
- "eslint": "^8.2.0",
58
+ "eslint": "^8.11.0",
58
59
  "eslint-config-airbnb-base": "^15.0.0",
59
- "eslint-plugin-import": "^2.25.3",
60
- "jest": "^27.3.1",
61
- "node-sass": "^6.0.1",
62
- "rollup": "^2.60.0",
60
+ "eslint-plugin-import": "^2.25.4",
61
+ "jest": "^27.5.1",
62
+ "node-sass": "^7.0.1",
63
+ "rollup": "^2.70.1",
63
64
  "rollup-plugin-browsersync": "^1.3.3",
64
65
  "rollup-plugin-copy": "^3.4.0",
65
- "rollup-plugin-postcss": "^4.0.1",
66
+ "rollup-plugin-postcss": "^4.0.2",
66
67
  "rollup-plugin-terser": "^7.0.2"
67
68
  }
68
69
  }