-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
111 lines (111 loc) · 2.78 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@geut/moleculer-browser",
"version": "0.0.11",
"description": "Moleculer for the browser.",
"main": "dist/umd/moleculer.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"clean": "del-cli dist",
"build": "rollup -c",
"build:prod": "cross-env NODE_ENV=production npm run build",
"test": "jest --passWithNoTests",
"test:parcel": "parcel tests/server/index.html -d tests/server/dist",
"test:serve": "run-s build test:parcel",
"posttest": "npm run lint",
"lint": "standard \"**/*.js\"",
"preversion": "npm test",
"version": "npm run build:prod && chan release --allow-yanked ${npm_package_version} && git add .",
"example": "run-s build example:parcel",
"example:parcel": "parcel example/index.html --no-cache -d example/dist"
},
"dependencies": {
"args": "^5.0.1",
"avsc": "^5.4.22",
"browser-process-hrtime": "^1.0.0",
"buffer": "^5.6.0",
"cpus": "^1.0.2",
"es6-error": "^4.1.1",
"eventemitter2": "^6.4.3",
"fastest-validator": "^1.7.0",
"fflate": "^0.1.0",
"fn-args": "^5.0.0",
"ipaddr.js": "^2.0.0",
"kleur": "^4.1.3",
"lodash": "^4.17.20",
"lru-cache": "^6.0.0",
"raf-perf": "^1.2.0",
"timers-browserify": "^2.0.10"
},
"devDependencies": {
"@geut/chan": "^2.1.1",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-inject": "^4.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-replace": "^2.3.3",
"cross-env": "^7.0.2",
"del-cli": "^2.0.0",
"jest": "^24.1.0",
"jest-puppeteer": "^4.3.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.3",
"puppeteer": "^1.19.0",
"rollup": "^2.28.2",
"rollup-plugin-analyzer": "^3.3.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^4.1.1",
"standard": "^14.3.4"
},
"jest": {
"preset": "jest-puppeteer",
"globals": {
"PATH": "http://localhost:1234"
},
"testMatch": [
"**/tests/**/*.test.js"
]
},
"standard": {
"ignore": [
"src/moleculer/**",
"dist"
],
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true,
"jest": true
},
"globals": [
"Atomics",
"SharedArrayBuffer",
"PATH",
"page",
"browser",
"context",
"jestPuppeteer"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/geut/moleculer-browser.git"
},
"keywords": [
"create",
"geut",
"module"
],
"author": {
"name": "GEUT",
"email": "contact@geutstudio.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/geut/moleculer-browser/issues"
},
"homepage": "https://github.com/geut/moleculer-browser#readme"
}