-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
50
51
52
53
54
55
56
{
"name": "@cityssm/green-button-parser",
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"description": "Parse Green Button formatted energy consumption feeds into JSON.",
"keywords": [
"download-my-data",
"energy",
"energy-consumption",
"energy-usage",
"espi",
"green-button",
"xml-parser"
],
"exports": {
".": "./index.js",
"./index": "./index.js",
"./index.js": "./index.js",
"./functionBlockBuilder": "./functionBlockBuilder.js",
"./functionBlockBuilder.js": "./functionBlockBuilder.js",
"./helpers": "./helpers.js",
"./helpers.js": "./helpers.js",
"./lookups": "./lookups.js",
"./lookups.js": "./lookups.js",
"./types/*": "./types/*.js",
"./types/*.js": "./types/*.js"
},
"scripts": {
"test": "mocha --timeout 60000 --slow -1",
"coverage": "c8 --reporter=lcov --reporter=text --reporter=text-summary mocha --timeout 60000 --exit"
},
"author": "The Corporation of the City of Sault Ste. Marie",
"license": "MIT",
"homepage": "https://github.com/cityssm/node-green-button-parser#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cityssm/node-green-button-parser.git"
},
"bugs": {
"url": "https://github.com/cityssm/node-green-button-parser/issues"
},
"dependencies": {
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"@types/xml2js": "^0.4.14",
"eslint": "^9.17.0",
"eslint-config-cityssm": "^18.1.2",
"prettier-config-cityssm": "^1.0.0"
}
}