-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.92 KB
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": "@web-alchemy/event-emitter",
"version": "1.1.2",
"description": "Simple library implementing event-emitter pattern",
"keywords": [
"javascript",
"pattern",
"event-emitter",
"pub-sub",
"observer",
"mediator"
],
"author": "monochromer <monochromer@mail.ru>",
"repository": {
"type": "git",
"url": "git+https://github.com/web-alchemy/event-emitter.git"
},
"bugs": {
"url": "https://github.com/web-alchemy/event-emitter/issues"
},
"homepage": "https://github.com/web-alchemy/event-emitter",
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"prebuild": "rimraf dist",
"build:lib": "rollup -c",
"prepublishOnly": "npm run build",
"test": "npm run test:main && npm run test:module",
"test:module": "mocha test/**/*.js --lib-type=module",
"test:main": "mocha test/**/*.js --lib-type=main",
"build:packages":"node create-packages.js",
"build": "npm run build:lib && npm run build:packages",
"semantic-release": "semantic-release",
"cm": "git-cz",
"prepare": "husky install"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@semantic-release/git": "^10.0.1",
"chai": "^4.3.6",
"change-case": "^4.1.2",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.1",
"mocha": "^10.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.75.6",
"semantic-release": "^19.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"directories": {
"test": "test"
},
"types": "index.d.ts"
}