-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 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": "tidi",
"version": "0.1.2",
"description": "",
"source": "src/index.js",
"main": "dist/index.js",
"module": "dist/index.module.js",
"umd:main": "dist/index.umd.js",
"scripts": {
"dev": "preact watch",
"build": "preact build --no-prerender",
"build:widget": "microbundle build --external none",
"build:lib": "microbundle build -i src/component.js",
"lint": "eslint '{src,test}/**/*.js'",
"test": "jest"
},
"files": [
"dist"
],
"eslintConfig": {
"extends": "preact",
"ignorePatterns": [
"build/"
]
},
"author": "sanix-darker <[email protected]>",
"license": "MIT",
"peerDependencies": {
"preact": "^10.5.7"
},
"devDependencies": {
"enzyme": "^3.11.0",
"enzyme-adapter-preact-pure": "^4.1.0",
"eslint": "^9.2.0",
"eslint-config-preact": "^1.1.3",
"jest": "^29.7.0",
"jest-preset-preact": "^4.0.2",
"microbundle": "^0.15.1",
"preact": "^10.5.7",
"preact-cli": "^3.0.5",
"preact-habitat": "^3.3.0",
"preact-render-to-string": "^6.4.2"
},
"jest": {
"preset": "jest-preset-preact",
"setupFiles": [
"<rootDir>/tests/__mocks__/setupTests.js"
]
}
}