@cycjimmy/hello-github-package-npm 6.0.0 → 6.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.
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,22 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cycjimmy/hello-github-package-npm",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.2.1",
|
|
4
4
|
"description": "hello github package npm",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"main": "dist/hello-world.cjs
|
|
6
|
+
"main": "dist/hello-world.cjs",
|
|
7
7
|
"module": "dist/hello-world.esm.js",
|
|
8
8
|
"browser": "dist/hello-world.umd.min.js",
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
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",
|
|
16
|
-
"build": "npm run build:prod:umd && npm run build:prod",
|
|
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"
|
|
9
|
+
"exports": {
|
|
10
|
+
"require": "./dist/hello-world.cjs",
|
|
11
|
+
"import": "./dist/hello-world.esm.js"
|
|
20
12
|
},
|
|
21
13
|
"repository": {
|
|
22
14
|
"type": "git",
|
|
@@ -32,38 +24,5 @@
|
|
|
32
24
|
"bugs": {
|
|
33
25
|
"url": "https://github.com/cycjimmy/hello-github-package-npm/issues"
|
|
34
26
|
},
|
|
35
|
-
"homepage": "https://github.com/cycjimmy/hello-github-package-npm#readme"
|
|
36
|
-
"files": [
|
|
37
|
-
"/dist"
|
|
38
|
-
],
|
|
39
|
-
"publishConfig": {
|
|
40
|
-
"access": "public"
|
|
41
|
-
},
|
|
42
|
-
"dependencies": {
|
|
43
|
-
"@cycjimmy/sass-lib": "^2.0.0"
|
|
44
|
-
},
|
|
45
|
-
"devDependencies": {
|
|
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",
|
|
51
|
-
"@rollup/plugin-eslint": "^8.0.1",
|
|
52
|
-
"@rollup/plugin-json": "^4.1.0",
|
|
53
|
-
"@rollup/plugin-node-resolve": "^13.1.3",
|
|
54
|
-
"autoprefixer": "^10.4.3",
|
|
55
|
-
"babel-jest": "^27.5.1",
|
|
56
|
-
"coveralls": "^3.1.1",
|
|
57
|
-
"cross-env": "^7.0.3",
|
|
58
|
-
"eslint": "^8.11.0",
|
|
59
|
-
"eslint-config-airbnb-base": "^15.0.0",
|
|
60
|
-
"eslint-plugin-import": "^2.25.4",
|
|
61
|
-
"jest": "^27.5.1",
|
|
62
|
-
"node-sass": "^7.0.1",
|
|
63
|
-
"rollup": "^2.70.1",
|
|
64
|
-
"rollup-plugin-browsersync": "^1.3.3",
|
|
65
|
-
"rollup-plugin-copy": "^3.4.0",
|
|
66
|
-
"rollup-plugin-postcss": "^4.0.2",
|
|
67
|
-
"rollup-plugin-terser": "^7.0.2"
|
|
68
|
-
}
|
|
27
|
+
"homepage": "https://github.com/cycjimmy/hello-github-package-npm#readme"
|
|
69
28
|
}
|