-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.64 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
51
52
53
54
55
56
{
"name": "monocart-formatter",
"version": "3.0.0",
"description": "JS/CSS/HTML/JSON formatter with content mapping",
"main": "./dist/monocart-formatter.js",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./dist/monocart-formatter.js"
},
"./node": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"types": "./lib/index.d.ts",
"scripts": {
"dev": "sf d formatter",
"test": "sf t && mocha",
"build-test": "node ./scripts/build-test.js",
"build-worker": "sf b worker -p patch",
"build-formatter": "sf b formatter -p patch",
"build": "sf lint && npm run build-test && npm run build-worker && npm run build-formatter",
"patch": "npm run build && npm run test && sf publish patch -r"
},
"workspaces": [
"packages/*"
],
"files": [
"dist",
"lib"
],
"keywords": [
"monocart-formatter"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cenfun/monocart-formatter.git"
},
"devDependencies": {
"console-grid": "^2.2.2",
"eight-colors": "^1.3.0",
"eslint": "^9.6.0",
"eslint-config-plus": "^2.0.2",
"eslint-plugin-html": "^8.1.1",
"js-beautify": "^1.15.1",
"lz-utils": "^2.0.2",
"mocha": "^10.6.0",
"stylelint": "^16.6.1",
"stylelint-config-plus": "^1.1.2"
}
}