-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 859 Bytes
/
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
{
"name": "unihead",
"version": "0.8.0",
"files": [
"dist",
"client.cjs",
"client.mjs",
"server.cjs",
"server.mjs"
],
"unpkg": "dist/unihead.umd.js",
"jsdelivr": "unihead.umd.js",
"main": "server.cjs",
"module": "server.mjs",
"exports": {
".": {
"import": "./server.mjs",
"require": "./server.cjs"
},
"./client": {
"import": "./client.mjs",
"require": "./client.cjs"
}
},
"scripts": {
"lint": "eslint . --ext .js,.jsx --fix",
"test": "tap test"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.0",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"happy-dom": "^3.1.1",
"tap": "^16.2.0",
"vite": "^2.9.8"
}
}