-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.46 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
{
"name": "@ungap/esx",
"version": "0.3.2",
"description": "",
"main": "./cjs/index.js",
"scripts": {
"bench": "node test/benchmark.js",
"build": "npm run cjs && npm run rollup:es && npm run rollup:json && npm run test && npm run bench && npm run size",
"cjs": "ascjs --no-default esm cjs",
"rollup:es": "rollup --config rollup/es.config.js",
"rollup:json": "rollup --config rollup/json.config.js",
"test": "c8 node test/index.js && c8 report -r html",
"size": "echo -e \"\\e[1mes.js\\e[0m $(cat es.js | brotli | wc -c)\"; echo -e \"\\e[1mjson.js\\e[0m $(cat json.js | brotli | wc -c)\"",
"coverage": "mkdir -p ./coverage; c8 report --reporter=text-lcov > ./coverage/lcov.info"
},
"keywords": [
"JSX",
"ESX",
"template literal",
"tag"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.3.0",
"ascjs": "^5.0.1",
"c8": "^7.12.0",
"rollup": "^3.9.1"
},
"module": "./esm/index.js",
"type": "module",
"unpkg": "es.js",
"exports": {
".": {
"import": "./esm/index.js",
"default": "./cjs/index.js"
},
"./json": {
"import": "./esm/json.js",
"default": "./cjs/json.js"
},
"./token": {
"import": "./esm/token.js",
"default": "./cjs/token.js"
},
"./package.json": "./package.json"
},
"dependencies": {
"@webreflection/empty": "^0.2.1"
}
}