-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
{
"name": "miis",
"version": "1.1.5",
"description": "Tiny functional event subscriber and dispatcher.",
"main": "dist/miis.cjs",
"module": "dist/miis.mjs",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "npx rollup -c rollup.config.mjs",
"lint": "npx eslint src/**",
"prettier": "npx prettier src/** --write && npx prettier __test__/** --write",
"test": "npx vitest",
"test:run": "npx vitest run",
"test:coverrage": "npx vitest --coverage",
"npm:publish": "npm run test:run && npm run build && npm publish"
},
"keywords": [
"event",
"emitter",
"subscribe",
"dispatch",
"linstener"
],
"author": "Yukiniro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Yukiniro/miis"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-transform-modules-commonjs": "^7.17.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.0.0",
"@yukiniro/eslint-config": "^0.0.7",
"c8": "^8.0.0",
"eslint": "^8.11.0",
"prettier": "^3.0.0",
"prettier-eslint": "^16.0.0",
"rollup": "^4.0.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.3.1",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"dependencies": {
"bittydash": "^0.7.0"
}
}