-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "presetter-preset-hybrid",
"version": "4.4.0",
"description": "An opinionated presetter preset for delivering a dual CommonJS/ESM package",
"keywords": [
"presetter",
"preset"
],
"homepage": "https://github.com/alvis/presetter#readme",
"bugs": {
"url": "https://github.com/alvis/presetter/issues"
},
"license": "MIT",
"author": "Alvis HT Tang <[email protected]>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/alvis/presetter.git"
},
"scripts": {
"bootstrap": "run prepare",
"build": "run build",
"coverage": "run coverage --",
"lint": "run lint --",
"prepublishOnly": "run prepare && run prepublishOnly",
"test": "run test --",
"watch": "run watch --"
},
"peerDependencies": {
"presetter": "workspace:*",
"presetter-preset-esm": "workspace:*"
},
"devDependencies": {
"presetter": "workspace:*"
},
"dependencies": {
"presetter-types": "workspace:*"
}
}