-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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
{
"name": "@typhonjs-build-test/node-browser",
"description": "Provides a single module collecting all build / test resources for node & browser testing TyphonJS modules.",
"version": "0.0.5",
"author": "Michael Leahy <[email protected]> (https://github.com/typhonrt)",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./src/index.js"
}
},
"contributors": [
"Michael Leahy <[email protected]> (https://github.com/typhonrt)"
],
"dependencies": {
"@typhonjs-build-test/node": "^0.0.11",
"nyc": "^15.1.0",
"polka": "^0.5.2",
"puppeteer-core": "^21.7.0",
"rollup-plugin-istanbul": "^5.0.0",
"sirv": "^2.0.4",
"sirv-cli": "^2.0.2"
},
"devDependencies": {
"rollup": "^4.9.4"
},
"peerDependencies": {
"rollup": "3.3-4"
},
"types": "./types/index.d.ts",
"files": [
"/npm-shrinkwrap.json",
"/lib",
"/src",
"/types"
],
"homepage": "https://github.com/typhonjs-node-build-test/node-browser#readme",
"keywords": [
"typhonjs",
"utils",
"build",
"test",
"browser"
],
"license": "MPL-2.0",
"bugs": "https://github.com/typhonjs-node-build-test/node-browser/issues",
"repository": "github:typhonjs-node-build-test/node-browser",
"scripts": {
"eslint": "eslint .",
"prepublishOnly": "npm run eslint",
"types": "esm-d-ts gen src/index.js -o types/index.d.ts"
}
}