-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 875 Bytes
/
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
{
"name": "pull-esm",
"version": "0.1.0",
"description": "This is an ES module build of [pull-stream](https://github.com/pull-stream/pull-stream)",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsup node_modules/pull-stream/index.js --minify --format esm --clean",
"test": "tape test.js",
"update": "npm i pull-stream@latest && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pull-stream/pull-esm.git"
},
"homepage": "https://github.com/pull-stream/pull-esm#readme",
"bugs": {
"url": "https://github.com/pull-stream/pull-esm/issues"
},
"keywords": [
"pull-stream",
"esm"
],
"author": "mixmix",
"license": "MIT",
"devDependencies": {
"pull-stream": "^3.6.14",
"tape": "^5.5.2",
"tsup": "^5.12.1",
"typescript": "^4.6.2"
}
}