-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 4.2 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 4.2 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
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@mat3ra/esse",
"version": "0.0.0",
"description": "Mat3ra's Excellent Source of Schemas and Examples (ESSE) for Digital Materials R&D",
"scripts": {
"transpile": "tsc -p tsconfig-transpile.json",
"build-schemas": "BUILD_ASSETS=true BUILD_PYTHON_MODULES=true BUILD_PATH='./dist/js' ts-node build_schemas.ts",
"compile-types": "ts-node compile_ts.ts",
"transpile-and-build-assets": "npm run set-schema-ids && npm run build-schemas && npm run compile-types && npm run transpile",
"test": "npm run build-schemas && nyc --reporter=text mocha --recursive --timeout 15000 --bail tests/js",
"test-only": "nyc --reporter=text mocha --recursive --bail tests/js",
"lint": "eslint src/js && prettier --write src/js",
"lint:fix": "eslint --fix --cache src/js && prettier --write src/js",
"prettier": "prettier --check src/js",
"prepare": "husky install || exit 0",
"set-schema-ids": "ts-node set_schema_ids.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/Exabyte-io/esse.git"
},
"main": "dist/js/esse/index.js",
"author": "Mat3ra.com",
"email": "info@mat3ra.com",
"bugs": {
"url": "https://github.com/Exabyte-io/exabyte-esse/issues"
},
"homepage": "https://github.com/Exabyte-io/esse",
"devDependencies": {
"@exabyte-io/eslint-config": "2025.5.13-0",
"@mat3ra/tsconfig": "^2024.6.3-0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chai": "4.5.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-exports": "^1.0.0-beta.5",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.9",
"eslint-plugin-jsonc": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-mui-path-imports": "0.0.15",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.5.0",
"mocha": "10.8.2",
"nyc": "15.1.0",
"prettier": "^2.8.8",
"prettyjson": "^1.2.5",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"license": "Apache-2.0",
"dependencies": {
"@mat3ra/utils": "2026.3.7-0",
"@babel/cli": "^7.27.0",
"@babel/core": "^7.26.10",
"@babel/eslint-parser": "^7.27.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.27.0",
"@babel/register": "^7.25.9",
"@babel/runtime-corejs3": "^7.27.0",
"@types/chai": "^4.3.20",
"@types/js-yaml": "^4.0.9",
"@types/json-schema-merge-allof": "^0.6.5",
"@types/mocha": "^10.0.10",
"ajv": "^8.17.1",
"ajv-formats": "^2.1.1",
"js-yaml": "^4.1.0",
"json-schema": "^0.4.0",
"json-schema-deref-sync": "0.14.0",
"json-schema-merge-allof": "^0.8.1",
"lodash": "4.17.21",
"json-schema-to-typescript": "^15.0.4"
},
"engines": {
"node": ">=14.0.0"
},
"lint-staged": {
"src/**/*.js": [
"eslint --cache --fix",
"prettier --write"
],
"src/**/*.css": "prettier --write",
"schemas/**/*.json": "eslint --cache --fix --no-ignore",
"example/**/*.json": "eslint --cache --fix --no-ignore"
},
"exports": {
"./dist/js/schema/*.json": "./dist/js/schema/*.json",
"./dist/js/example/*": "./dist/js/example/*",
"./dist/js/utils/*": "./dist/js/utils/*.js",
"./dist/js/esse/*": "./dist/js/esse/*.js",
"./dist/js/json_include/*": "./dist/js/json_include/*.js",
"./dist/js/scripts/*": "./dist/js/scripts/*.js",
"./dist/js/types": "./dist/js/types.js",
"./dist/js/schemas.json": "./dist/js/schemas.json"
}
}