-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.98 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.98 KB
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
55
56
57
58
59
60
61
62
63
64
{
"name": "data-restructor",
"version": "3.4.6",
"description": "Transforms parsed JSON objects into a uniform data structure",
"directories": {
"test": "test"
},
"targets": {
"default": {
"context": "node",
"includeNodeModules": true,
"engines": {
"node": "20"
}
}
},
"engines": {
"node": "24"
},
"scripts": {
"prebuild": "rm -rf dist",
"lint": "eslint \"./src/js/*.js\"",
"test": "jasmine --config=./test/js/jasmine.json",
"coverage": "nyc npm run test",
"coverage-badge": "istanbul-badges-readme",
"doc": "jsdoc -d docs --configure ./docs/jsdoc.json --readme ./README.md ./src/js/*.js",
"merger": "echo -ne \"k\n\" | npx merger build",
"dev": "rm -rf devdist && parcel --out-dir devdist ./src/js/*.js",
"devbuild": "rm -rf devdist && NODE_ENV=development parcel build --dist-dir devdist ./src/js/*.js --no-optimize --no-source-maps --no-scope-hoist --no-content-hash --detailed-report",
"build": "parcel build ./src/js/*.js",
"changelog": "auto-changelog",
"changelog-debug": "auto-changelog --template json --output changelog-data.json",
"package": "npm run lint && npm run coverage && npm run coverage-badge && npm run doc && npm run changelog && npm run devbuild && npm run build && npm run merger"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JohT/data-restructor-js.git"
},
"keywords": [
"restruct",
"json",
"data"
],
"author": "JohT",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/JohT/data-restructor-js/issues"
},
"homepage": "https://joht.github.io/data-restructor-js",
"devDependencies": {
"@eslint/js": "10.0.1",
"auto-changelog": "2.5.0",
"eslint": "10.2.1",
"inquirer": "13.4.2",
"istanbul-badges-readme": "1.9.0",
"jasmine": "6.2.0",
"jsdoc": "4.0.5",
"lmdb": "3.5.4",
"merger-js": "3.10.3",
"node-notifier": "10.0.1",
"nyc": "18.0.0",
"parcel": "2.16.4"
}
}