generated from Exabyte-io/template-definitions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.09 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.09 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
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@mat3ra/wode",
"version": "0.0.0",
"description": "WOrkflow DEfinitions",
"scripts": {
"test": "nyc --reporter=text mocha --recursive --bail --require @babel/register/lib --require tests/js/setup.js tests/js",
"lint": "eslint src/js tests/js && prettier --write src/js tests/js",
"lint:fix": "eslint --fix --cache src/js tests/js && prettier --write src/js tests/js",
"transpile": "babel --out-dir dist/js src/js",
"prettier": "prettier --check src/js tests/js",
"prepare": "husky install || exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/Exabyte-io/wode.git"
},
"main": "dist/js/index.js",
"files": [
"/assets",
"/dist",
"/src/js",
".babelrc",
"build_workflows.js"
],
"author": "Exabyte Inc.",
"bugs": {
"url": "https://github.com/Exabyte-io/wode/issues"
},
"license": "Apache-2.0",
"homepage": "https://github.com/Exabyte-io/wode",
"dependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.0",
"@babel/eslint-parser": "7.16.3",
"@babel/plugin-proposal-class-properties": "7.16.0",
"@babel/preset-env": "7.16.4",
"@babel/preset-react": "7.16.7",
"@babel/register": "^7.16.0",
"@babel/runtime-corejs3": "7.16.8",
"@exabyte-io/periodic-table.js": "2022.6.8-0",
"crypto-js": "^4.2.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"mixwith": "^0.1.1",
"underscore": "^1.13.3",
"underscore.string": "^3.3.4",
"v20": "^0.1.0"
},
"devDependencies": {
"@mat3ra/ade": "2026.3.4-0",
"@exabyte-io/eslint-config": "2025.5.13-0",
"@mat3ra/ide": "2025.11.19-0",
"@mat3ra/mode": "2026.3.4-0",
"@mat3ra/utils": "2025.9.20-0",
"@mat3ra/code": "2025.10.24-0",
"@mat3ra/esse": "2025.11.26-0",
"@mat3ra/made": "2025.7.15-0",
"@mat3ra/standata": "2026.1.12-0",
"chai": "^4.3.4",
"eslint": "7.32.0",
"eslint-config-airbnb": "19.0.2",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-exports": "^1.0.0-beta.2",
"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.30.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"prettier": "^2.7.1"
},
"peerDependencies": {
"@mat3ra/ade": "*",
"@mat3ra/ide": "*",
"@mat3ra/mode": "*",
"@mat3ra/standata": "*",
"@mat3ra/utils": "*",
"@mat3ra/code": "*",
"@mat3ra/esse": "*",
"@mat3ra/made": "*"
},
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"src/js/**/*.js": ["eslint --cache --fix", "prettier --write"],
"tests/js/**/*.js": ["eslint --cache --fix", "prettier --write"]
}
}