This repository was archived by the owner on Jan 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.23 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.23 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
72
73
74
75
76
77
78
79
80
81
82
{
"name": "epbdjs-cli",
"version": "1.3.0",
"description": "CLI for the epbdjs package (energy performance of buildings calculations)",
"main": "lib/index.js",
"scripts": {
"build": "rimraf lib/* && babel ./src --out-dir ./lib && npm run copy",
"bundle": "webpack --config webpack.config.js --env.production",
"bundledev": "webpack --config webpack.config.js",
"copy": "ncp ./src/examples ./lib && ncp README.md lib/README.md && ncp LICENSE lib/LICENSE && ncp TODO lib/TODO",
"prepare": "npm run build",
"test": "echo \"Testing epbdjs-cli\" && node src/test.js",
"test:watch": "npm run test -- -w",
"clean": "rimraf lib/*",
"lint": "eslint --ignore-pattern 'lib/*.js' --ext .mjs,.js,.jsx src/",
"flow": "flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pachi/epbdjs-cli.git"
},
"bugs": {
"url": "https://github.com/pachi/epbdjs-cli/issues"
},
"homepage": "https://github.com/pachi/epbdjs-cli#README.md",
"keywords": [
"energy",
"buildings",
"NZEB",
"EPBD",
"52000-1",
"performance",
"CTE",
"DB-HE"
],
"author": "Rafael Villar Burke <pachi@ietcc.csic.es>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pachi/epbdjs-cli/issues"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.6.1",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.35.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-sorting": "^0.3.0",
"ncp": "^2.0.0",
"rimraf": "^2.6.2",
"watch": "^1.0.2",
"webpack": "^3.6.0"
},
"dependencies": {
"argparse": "^1.0.9",
"epbdjs": "7.3.1"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
},
"useBuiltIns": true
}
],
"flow"
],
"plugins": [
"transform-export-extensions",
"transform-object-rest-spread"
]
}
}