-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.1 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
{
"name": "@rebelstack-io/metaflux",
"version": "2.0.2",
"description": "Library supporting flux pattern without react",
"main": "dist/metaflux.js",
"unpkg": "dist/metaflux.js",
"files": [
"dist"
],
"scripts": {
"start": "webpack serve",
"test": "jest",
"test:watch": "jest --watch",
"build": "npx webpack --config webpack.config.js"
},
"keywords": [
"flux"
],
"contributors": [
{
"name": "ReinBrain",
"url": "https://github.com/reinsbrain"
},
{
"name": "pablolimo",
"url": "https://github.com/pablolimo"
},
{
"name": "Javier",
"email": "jegj57@gmail.com",
"url": "https://github.com/jegj"
},
{
"name": "Osmar Reyes",
"email": "osmarreyesst@gmail.com",
"url": "https://github.com/oreyes1991"
}
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-export-namespace-from": "^7.12.1",
"@babel/plugin-proposal-function-sent": "^7.12.1",
"@babel/plugin-proposal-json-strings": "^7.12.1",
"@babel/plugin-proposal-numeric-separator": "^7.12.7",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-proposal-throw-expressions": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-destructuring": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.6.3",
"style-loader": "^2.0.0",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^4.10.0",
"webpack-uglify-js-plugin": "^1.1.9"
},
"dependencies": {
"eventemitter3": "^4.0.7"
}
}