-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
76 lines (76 loc) · 1.79 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
{
"name": "@eroc/core",
"version": "4.3.2",
"description": "Lightweight framework for scalable applications",
"license": "MIT",
"author": "Mauricio Soares",
"homepage": "https://github.com/msodeveloper/core.js",
"type": "module",
"main": "src/core.js",
"scripts": {
"serve": "serve . -p 8080",
"bundle-glue": "rollup --config tools/glueRollup.config.js",
"export-glue-code-as-string": "node tools/glueAsExportedString.js",
"bundle-core": "rollup --config tools/rollup.config.js",
"bundle": "npm run bundle-glue && npm run export-glue-code-as-string && npm run bundle-core",
"bundle-watch": "todo",
"lint": "eslint src tests examples",
"lint-fix": "eslint src tests examples --fix",
"prepublishOnly": "npm run bundle",
"test": "jasmine --config=tests/jasmine.json"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.5",
"eslint": "^7.32.0",
"eslint-config-red": "^1.8.2",
"jasmine": "^3.9.0",
"rollup": "^2.58.0",
"serve": "^12.0.1"
},
"dependencies": {
"event-e3": "^8.1.3",
"utilsac": "^14.2.3"
},
"eslintConfig": {
"extends": [
"red"
],
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module",
"ecmaFeatures": {}
},
"env": {
"es2021": true,
"browser": true,
"jasmine": true,
"node": true
},
"rules": {}
},
"files": [
"src",
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/msodeveloper/core.js.git"
},
"bugs": {
"url": "https://github.com/msodeveloper/core.js/issues"
},
"keywords": [
"core.js",
"core",
"framework",
"lightweight",
"scalable",
"modules",
"architecture",
"structure",
"actor",
"model"
]
}