-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.5 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@ficusjs/renderers",
"version": "5.10.0",
"description": "Minified ES module renderers for FicusJS",
"type": "module",
"main": "dist/uhtml.mjs",
"module": "dist/uhtml.mjs",
"types": "types/renderers.d.ts",
"sideEffects": false,
"scripts": {
"build": "run-p build:*",
"build:htm": "rollup -i src/htm.mjs -o dist/htm.mjs -f es -m -p \"alias={entries:{'./constants.mjs':'./constants-mini.mjs'}}\" -p \"commonjs={}\" -p \"node-resolve={}\" -p \"terser={mangle: { keep_fnames: true, toplevel: true, module: true }}\" -p \"filesize={}\"",
"build:htm-preact": "rollup -i src/htm-preact.mjs -o dist/htm-preact.mjs -f es -m -p \"node-resolve={}\" -p \"terser={mangle: { keep_fnames: true, toplevel: true, module: true }}\" -p \"filesize={}\"",
"build:uhtml": "rollup -i src/uhtml.mjs -o dist/uhtml.mjs -f es -m -p \"node-resolve={}\" -p \"terser={mangle: { keep_fnames: true, toplevel: true, module: true }}\" -p \"filesize={}\"",
"build:lit-html": "rollup -i src/lit-html.mjs -o dist/lit-html.mjs -f es -m -p \"node-resolve={}\" -p \"terser={mangle: { keep_fnames: true, toplevel: true, module: true }}\" -p \"filesize={}\"",
"build:css": "rollup -i src/css.mjs -o dist/css.mjs -f es -m -p \"node-resolve={}\" -p \"terser={mangle: { keep_fnames: true, toplevel: true, module: true }}\" -p \"filesize={}\"",
"build:jsx-dom": "cp src/jsx-dom.mjs dist/jsx-dom.mjs",
"cy:open": "cypress open",
"cy:run": "cypress run",
"dev": "run-p serve open",
"lint": "standard \"./src/**/*.mjs\" \"./test/unit/**/*.mjs\"",
"open": "open-cli http://127.0.0.1:8080/test/e2e",
"test": "run-p test:*",
"test:e2e": "start-server-and-test serve:silent http://127.0.0.1:8080 cy:run",
"test:unit": "ava test/unit/**/*.spec.mjs",
"test:unit:watch": "ava test/unit/**/*.spec.mjs --watch",
"test:unit:coverage": "c8 --all --include=src/**/*.mjs --reporter=lcov --reporter=text-summary ava test/unit/**/*.spec.mjs --verbose",
"serve": "http-server",
"serve:silent": "http-server -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ficusjs/ficusjs-renderers.git"
},
"keywords": [
"ficusjs",
"frontend",
"lit-html",
"uhtml",
"htm",
"preact",
"web-components"
],
"exports": {
".": {
"import": "./dist/uhtml.mjs"
},
"./uhtml": {
"import": "./dist/uhtml.mjs"
},
"./lit-html": {
"import": "./dist/lit-html.mjs"
},
"./htm": {
"import": "./dist/htm.mjs"
},
"./htm-preact": {
"import": "./dist/htm-preact.mjs"
},
"./jsx-dom": {
"import": "./dist/jsx-dom.mjs"
},
"./css": {
"import": "./dist/css.mjs"
}
},
"files": [
"dist",
"types"
],
"author": "Matt Levy",
"license": "MIT",
"bugs": {
"url": "https://github.com/ficusjs/ficusjs-renderers/issues"
},
"homepage": "https://github.com/ficusjs/ficusjs-renderers#readme",
"devDependencies": {
"ava": "6.1.3",
"@rollup/plugin-alias": "5.1.1",
"@rollup/plugin-commonjs": "28.0.0",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"c8": "10.1.2",
"cypress": "13.15.0",
"http-server": "14.1.1",
"htm": "3.1.1",
"jsdom": "25.0.1",
"lit-html": "3.2.1",
"npm-run-all": "4.1.5",
"open-cli": "8.0.0",
"rollup": "4.24.0",
"rollup-plugin-filesize": "10.0.0",
"standard": "17.1.2",
"start-server-and-test": "2.0.8",
"uhtml": "3.2.2"
},
"standard": {
"ignore": [
"*.ts"
]
}
}