fyn 1.1.16 → 1.1.20
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/dist/fyn.js +6886 -356
- package/package.json +8 -9
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fyn",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.20",
|
|
4
4
|
"description": "A node package manager, fast, workspace, and better productivity and efficiency",
|
|
5
5
|
"main": "./bin/fyn.js",
|
|
6
6
|
"homepage": "https://www.electrode.io/fynpo/",
|
|
7
|
+
"license": "Apache-2.0",
|
|
7
8
|
"scripts": {
|
|
8
9
|
"test": "xrun xarc/test-only",
|
|
9
10
|
"lint": "xrun xarc/lint",
|
|
@@ -14,13 +15,13 @@
|
|
|
14
15
|
"ci:check": "xrun xarc/check",
|
|
15
16
|
"coveralls": "cat coverage/lcov.info | coveralls",
|
|
16
17
|
"prepublishOnly": "xrun build",
|
|
17
|
-
"prepack": "publish-util-prepack",
|
|
18
18
|
"postpack": "publish-util-postpack"
|
|
19
19
|
},
|
|
20
20
|
"bin": {
|
|
21
21
|
"fyn": "./bin/fyn.js",
|
|
22
22
|
"fun": "./bin/fun.js"
|
|
23
23
|
},
|
|
24
|
+
"author": "Walmart GTP.js Team and Contributors",
|
|
24
25
|
"publishConfig": {
|
|
25
26
|
"access": "public",
|
|
26
27
|
"registry": "https://registry.npmjs.com/"
|
|
@@ -54,18 +55,16 @@
|
|
|
54
55
|
"mono-repo",
|
|
55
56
|
"workspaces"
|
|
56
57
|
],
|
|
57
|
-
"author": "Walmart GTP.js Team and Contributors",
|
|
58
|
-
"contributors": [
|
|
59
|
-
"Joel Chen",
|
|
60
|
-
"Dat Vong",
|
|
61
|
-
"Divya Karippath"
|
|
62
|
-
],
|
|
63
|
-
"license": "Apache-2.0",
|
|
64
58
|
"repository": {
|
|
65
59
|
"type": "git",
|
|
66
60
|
"url": "https://github.com/electrode-io/fynpo.git",
|
|
67
61
|
"directory": "packages/fyn"
|
|
68
62
|
},
|
|
63
|
+
"contributors": [
|
|
64
|
+
"Joel Chen",
|
|
65
|
+
"Dat Vong",
|
|
66
|
+
"Divya Karippath"
|
|
67
|
+
],
|
|
69
68
|
"engines": {
|
|
70
69
|
"node": ">=8"
|
|
71
70
|
},
|