-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
37 lines (37 loc) · 1.2 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
{
"name": "@streamparser/json",
"description": "Streaming JSON parser in Javascript for Node.js, Deno and the browser",
"version": "0.0.5",
"main": "./dist/cjs/index.js",
"module": "./dist/mjs/index.js",
"browser": "./dist/umd/index.js",
"types": "./dist/index.d.ts",
"author": "Juanjo Diaz <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/juanjoDiaz/streamparser-json.git"
},
"bugs": "https://github.com/juanjoDiaz/streamparser-json/issues",
"devDependencies": {
"@types/node": "^14.14.6",
"rollup": "^2.33.1",
"rollup-plugin-typescript2": "^0.27.3",
"tap": "^14.10.8",
"typescript": "^4.0.5"
},
"scripts": {
"build:deno": "node build.deno.js ./src ./dist/deno",
"build:umd": "rollup -c",
"build:cjs": "tsc --module commonjs --outDir ./dist/cjs",
"build:mjs": "tsc --module esnext --outDir ./dist/mjs && node build.mjs.js ./dist/mjs",
"build": "npm run build:umd && npm run build:cjs && npm run build:mjs && npm run build:deno",
"prepare": "npm run build",
"test": "TS_NODE_SKIP_PROJECT=true tap --timeout=60 test"
},
"license": "MIT",
"tags": [
"json",
"stream"
],
"dependencies": {}
}