-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "gruenstromindex",
"version": "1.0.7",
"description": "Green Power Index (GrünstromIndex) for Node/Javascript",
"main": "src/lib.cjs",
"bin": {
"gruenstromindex": "./cli.js"
},
"scripts": {
"test": "mocha",
"build": "webpack --config webpack.config.js --mode production",
"dev": "webpack-dev-server --open --config webpack.config.js --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/energychain/node-gruenstromindex.git"
},
"keywords": [
"gruenstromindex",
"stromdao",
"corrently"
],
"author": "STROMDAO GmbH <dev@stromdao.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/energychain/node-gruenstromindex/issues"
},
"homepage": "https://gruenstromindex.de/",
"dependencies": {
"axios": "^0.22.0",
"jquery": "^3.6.1"
},
"type": "module",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.0",
"copy-webpack-plugin": "^11.0.0",
"dotenv-webpack": "^8.0.1",
"html-webpack-plugin": "^5.5.0",
"mocha": "^10.1.0",
"tydids": "^1.1.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}