-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "json-key-value",
"version": "1.1.2",
"description": "Allows to work on JSON as a sequence to path/value pairs",
"main": "src/index.mjs",
"type": "module",
"types": "types/index.d.mts",
"scripts": {
"test": "zUnit",
"types": "tsc",
"format": "prettier --ignore-unknown --write .",
"build-doc": "typedoc src/*.js src/**/*.js",
"build-demo": "npx rollup demo-src/index.js --file demo-src/demo/bundle.js --format iife && cp -r demo-src/demo docs",
"serve-doc": "npx http-server docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sithmel/json-key-value.git"
},
"keywords": [
"json",
"stream"
],
"author": "Maurizio Lupo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sithmel/json-key-value/issues"
},
"homepage": "https://github.com/sithmel/json-key-value#readme",
"devDependencies": {
"@types/node": "^22.10.5",
"@types/web": "^0.0.193",
"prettier": "^3.4.2",
"typedoc": "^0.27.6",
"typescript": "^5.7.3",
"zunit": "^4.0.2"
},
"prettier": {
"semi": false
}
}