-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.26 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
{
"name": "@nichoth/test-dom",
"version": "0.6.4",
"description": "Tools for testing in a browser environment",
"main": "./dist/index.mjs",
"directories": {
"test": "test"
},
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"scripts": {
"build": "mkdir -p ./dist && rm -rf ./dist/* && node ./build.js && npm run minify-esm && npm run minify-cjs",
"preversion": "npm run build && npm test",
"postversion": "git push && git push --tags && npm publish",
"minify-esm": "esbuild dist/index.mjs --keep-names --minify --outfile=dist/index.min.mjs",
"minify-cjs": "esbuild dist/index.cjs --keep-names --minify --outfile=dist/index.min.cjs",
"prepublishOnly": "npm run build",
"test": "esbuild --bundle test/test.js | tape-run | tap-arc"
},
"devDependencies": {
"esbuild": "0.19.10",
"tap-arc": "1.2.2",
"tape-run": "11.0.0",
"@nichoth/tapzero": "^0.8.4",
"xterm": "5.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nichoth/test-dom"
},
"keywords": [
"dom",
"test"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/nichoth/test-dom/issues"
},
"homepage": "https://github.com/nichoth/test-dom#readme"
}