-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
99 lines (99 loc) · 3.9 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"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 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": "^2023.8.29-1",
"@mat3ra/tsconfig": "^2024.6.3-0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"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.5",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsdoc": "^37.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-mui-path-imports": "0.0.15",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.0",
"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": "10.3.0",
"nyc": "15.1.0",
"prettier": "^2.5.1",
"prettyjson": "^1.1.3",
"ts-node": "^10.9.2",
"typescript": "^4.5.5"
},
"license": "Apache-2.0",
"dependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.24.1",
"@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/preset-typescript": "^7.22.5",
"@babel/register": "^7.16.0",
"@babel/runtime-corejs3": "7.16.8",
"@types/chai": "^4.3.11",
"@types/js-yaml": "^4.0.9",
"@types/json-schema-merge-allof": "^0.6.5",
"@types/mocha": "^10.0.6",
"ajv": "^8.12.0",
"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",
"json-schema-to-typescript": "^13.1.2",
"lodash": "4.17.21"
},
"engines": {
"node": ">=14.0.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css}": "prettier --write"
},
"exports": {
"./dist/js/schema/*.json": "./dist/js/schema/*.json",
"./dist/js/example/*": "./dist/js/example/*.js",
"./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"
}
}