-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.75 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
65
66
67
68
69
70
71
{
"name": "ecoinvent-interface",
"version": "1.1.0",
"description": "JavaScript interface for accessing ecoinvent data",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"clean": "rm -rf dist coverage",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"ecoinvent",
"lca",
"life cycle assessment",
"sustainability"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/onwp/ecoinvent-interface.git"
},
"homepage": "https://github.com/onwp/ecoinvent-interface",
"bugs": {
"url": "https://github.com/onwp/ecoinvent-interface/issues"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.0",
"@types/progress": "^2.0.7",
"axios": "^1.8.4",
"jest": "^29.7.0",
"rollup": "^4.39.0",
"rollup-plugin-dts": "^6.2.1",
"ts-jest": "^29.3.1",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
},
"dependencies": {
"axios": "^1.8.4",
"env-paths": "^3.0.0",
"extract-zip": "^2.0.1",
"fast-xml-parser": "^5.2.0",
"fastest-levenshtein": "^1.0.16",
"fflate": "^0.8.2",
"idb-keyval": "^6.2.1",
"jszip": "^3.10.1",
"node-7z": "^3.0.0",
"node-7z-archive": "^1.1.7",
"progress": "^2.0.3"
}
}