-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.03 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
{
"name": "@muze-nl/jsontag",
"version": "0.9.9",
"description": "tagged json library",
"type": "module",
"main": "src/JSONTag.mjs",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap test/*.mjs",
"build": "parcel build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poef/jsontag.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/poef/jsontag/issues"
},
"homepage": "https://github.com/poef/jsontag#readme",
"targets": {
"regular": {
"source": "src/browser.mjs",
"context": "browser",
"includeNodeModules": true
}
},
"devDependencies": {
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "^8.13.0",
"events": "^3.3.0",
"ohm-js": "^16.3.2",
"parcel": "^2.9.3",
"parcel-resolver-ignore": "^2.1.5",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"tap": "^16.0.1"
},
"files": [
"README.md",
"LICENSE",
"src/",
"dist/"
]
}