-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "@vpmedia/simplify",
"version": "1.16.0",
"description": "@vpmedia/simplify",
"author": "Andras Csizmadia <[email protected]> (www.vpmedia.hu)",
"license": "MIT",
"homepage": "https://github.com/vpmedia/simplify#readme",
"bugs": {
"url": "https://github.com/vpmedia/simplify/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vpmedia/simplify.git"
},
"keywords": [
"utils"
],
"main": "./src/index.js",
"types": "./types/index.d.ts",
"type": "module",
"devDependencies": {
"@babel/preset-env": "^7.26.9",
"@eslint/js": "^9.21.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"eslint": "^9.21.0",
"eslint-plugin-jsdoc": "^50.6.3",
"eslint-plugin-unicorn": "^57.0.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.5.2",
"typescript": "^5.7.3"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest --passWithNoTests",
"lint": "eslint \"**/*.{js,jsx}\"",
"typecheck": "tsc",
"format": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json,md,css}\""
},
"browserslist": [
"> 0.5%",
"not dead",
"not op_mini all",
"iOS >= 14"
],
"dependencies": {
"eventemitter3": "^5.0.1"
}
}