-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.09 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
{
"name": "epb",
"version": "1.2.0",
"description": "Energy performance of buildings",
"main": "./lib/index.js",
"files": [
"lib/"
],
"directories": {
"lib": "./lib"
},
"scripts": {
"format": "prettier --write .",
"lint": "eslint --fix .; exit 0",
"prepare": "npm run test && rm -rf ./lib && rollup src/index.js --format umd --name \"epb\" --file lib/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/immoveable/epb-js.git"
},
"keywords": [
"belgium",
"buildings",
"dpe",
"energy",
"epb",
"epc",
"france",
"peb",
"performance",
"real estate"
],
"author": "Arthur White <arthur@white.li>",
"license": "MIT",
"bugs": {
"url": "https://github.com/immoveable/epb-js/issues"
},
"homepage": "https://github.com/immoveable/epb-js#readme",
"devDependencies": {
"@babel/core": "^7.10.1",
"@babel/preset-env": "^7.10.1",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"rollup": "^2.11.2"
}
}