-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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
{
"name": "mouse-firework",
"version": "0.0.6",
"description": "Fireworks effects appear when you click the mouse",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"build:umd": "rollup -c umd.config.mjs",
"test": "mocha -r ts-node/register 'test/**/*.ts'",
"test-cov": "c8 --reporter=lcov --reporter=text-summary npm test"
},
"author": "D-Sketon",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@types/chai": "^4.3.20",
"@types/jsdom": "^21.1.7",
"@types/mocha": "^10.0.8",
"@types/sinon": "^17.0.3",
"c8": "^10.1.2",
"chai": "4.5.0",
"jsdom": "^25.0.1",
"mocha": "^10.7.3",
"rollup": "^4.24.0",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typescript": "^5.6.2"
},
"dependencies": {
"theme-shokax-anime": "^0.0.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/D-Sketon/mouse-firework.git"
},
"bugs": {
"url": "https://github.com/D-Sketon/mouse-firework/issues"
},
"homepage": "https://github.com/D-Sketon/mouse-firework#readme"
}