-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.06 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
{
"name": "@slimio/core",
"version": "0.11.0",
"description": "Slim.IO Core",
"main": "index.js",
"type": "module",
"scripts": {
"prepublishOnly": "pkg-ok",
"test": "node --experimental-modules test/core.js",
"doc": "jsdoc -c ./jsdoc.json -r -R ./README.md -P ./package.json --verbose",
"coverage": "c8 -r=\"html\" npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SlimIO/Core.git"
},
"engines": {
"node": ">=12"
},
"keywords": [
"SlimIO",
"Core"
],
"files": [
"index.js",
"index.d.ts",
"src"
],
"author": "SlimIO",
"license": "MIT",
"bugs": {
"url": "https://github.com/SlimIO/Core/issues"
},
"homepage": "https://github.com/SlimIO/Core#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@escommunity/minami": "^1.0.0",
"@slimio/addon-factory": "^0.5.0",
"@slimio/eslint-config": "^4.1.0",
"@types/es6-shim": "^0.31.40",
"@types/node": "^14.0.1",
"@types/rimraf": "^3.0.0",
"@types/zen-observable": "^0.8.0",
"c8": "^7.1.2",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"eslint": "^7.0.0",
"husky": "^4.2.5",
"jsdoc": "^3.6.4",
"pkg-ok": "^2.3.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"@lukeed/uuid": "^1.0.1",
"@slimio/addon": "^0.22.1",
"@slimio/config": "^0.15.1",
"@slimio/ipc": "^0.2.1",
"@slimio/is": "^1.5.1",
"@slimio/logger": "^0.1.2",
"@slimio/oop": "^1.0.0",
"@slimio/safe-emitter": "^1.1.0",
"@slimio/scheduler": "^0.8.0",
"@slimio/unit-testing": "^1.0.0",
"@slimio/utils": "^0.9.0",
"is-stream": "^2.0.0",
"make-promises-safe": "^5.1.0",
"semver": "^7.3.2"
}
}