-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.58 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
71
72
73
74
75
{
"name": "@exabyte-io/application-flavors.js",
"version": "0.0.0",
"description": "Input file templates and related computational configuration parameters for the applications used in the platform.",
"scripts": {
"prepublishOnly": "rm -rf lib; npm run transpile; node build_templates.js; node build_filter_trees.js",
"postinstall": "npm run transpile",
"transpile": "mkdir -p lib; babel src/js --out-dir lib/js",
"test": "nyc --reporter=text mocha --require @babel/register tests",
"build:assets": "node build_templates.js; node build_filter_trees.js",
"lint": "eslint src/js tests && prettier --write src/js tests",
"lint:fix": "eslint --fix --cache src/js tests && prettier --write src/js tests",
"prettier": "prettier --check src/js tests",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/Exabyte-io/application-flavors.git"
},
"main": "lib/js/index.js",
"author": "Exabyte Inc.",
"email": "[email protected]",
"bugs": {
"url": "https://github.com/Exabyte-io/application-flavors/issues"
},
"homepage": "https://github.com/Exabyte-io/application-flavors",
"devDependencies": {
"@exabyte-io/eslint-config": "^2022.11.17-0",
"@mat3ra/code": "2024.3.25-3",
"@mat3ra/esse": "2024.4.19-1",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-mat3ra": "git+https://github.com/Exabyte-io/eslint-config-mat3ra.git#feat/SOF-6397",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsdoc": "^37.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"mocha": "^9.2.2",
"nyc": "15.1.0",
"prettier": "^2.5.1"
},
"license": "Apache-2.0",
"dependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.7",
"@babel/eslint-parser": "7.16.3",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-export-default-from": "7.16.0",
"@babel/preset-env": "7.16.4",
"@babel/register": "7.16.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"underscore": "^1.12.1",
"underscore.string": "^3.3.4"
},
"peerDependencies": {
"@mat3ra/code": "*",
"@mat3ra/esse": "*"
},
"engines": {
"node": ">=12.0",
"npm": ">=6.4.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css}": "prettier --write"
}
}