-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.95 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "le2ml-windowing",
"version": "1.0.12",
"description": "Windowing module for the LE2ML project",
"main": "index.js",
"scripts": {
"clean": "rimraf build",
"compile": "babel src --out-dir build",
"copy": "cpy .env build",
"build": "npm-run-all clean compile copy",
"dev": "cross-env NODE_ENV=development node build/index.js",
"start": "npm-run-all build dev",
"production": "cross-env NODE_ENV=production node index.js",
"lint": "eslint . --ext .js,.json",
"commit": "git-cz",
"release": "standard-version",
"publish": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FlorentinTh/LE2ML-Windowing-Module.git"
},
"author": "FlorentinTh",
"license": "Apache-2.0",
"pre-commit": [
"lint"
],
"bugs": {
"url": "https://github.com/FlorentinTh/LE2ML-Windowing-Module/issues"
},
"homepage": "https://github.com/FlorentinTh/LE2ML-Windowing-Module#README",
"dependencies": {
"axios": "^0.27.2",
"core-js": "^3.23.3",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"joi": "^17.6.0",
"line-by-line": "^0.1.6",
"winston": "^3.8.0"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/eslint-parser": "^7.18.2",
"@babel/preset-env": "^7.18.6",
"cpy-cli": "^4.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.1.0",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"standard-version": "^9.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"overrides": {
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"minimist": "^1.2.6"
}
}