UNPKG

2.09 kBJSONView Raw
1{
2 "name": "myst-spec",
3 "version": "0.0.5",
4 "description": "MyST schema, testcases, and typescript types",
5 "author": "Franklin Koch <franklin@curvenote.com>",
6 "homepage": "https://github.com/executablebooks/myst-spec",
7 "license": "MIT",
8 "types": "dist/index.d.ts",
9 "files": [
10 "dist"
11 ],
12 "keywords": [
13 "markdown",
14 "myst",
15 "jupyter",
16 "jupyter-book"
17 ],
18 "publishConfig": {
19 "access": "public"
20 },
21 "repository": {
22 "type": "git",
23 "url": "git+https://github.com/executablebooks/myst-spec.git"
24 },
25 "scripts": {
26 "build": "npm run clean && tsc index.ts && node index.js",
27 "docs": "npm run build && jupyter-book build docs",
28 "docs:quick": "jupyter-book build docs",
29 "clean": "rimraf index.js dist",
30 "test": "node --experimental-vm-modules ./node_modules/.bin/jest",
31 "test:watch": "node --experimental-vm-modules ./node_modules/.bin/jest --watchAll",
32 "lint": "prettier --write *.ts schema/*.ts",
33 "prepublishOnly": "npm run build;"
34 },
35 "bugs": {
36 "url": "https://github.com/executablebooks/myst-spec/issues"
37 },
38 "devDependencies": {
39 "@types/glob": "^7.2.0",
40 "@types/jest": "^27.4.1",
41 "@types/js-yaml": "^4.0.5",
42 "@types/node": "^17.0.21",
43 "@typescript-eslint/eslint-plugin": "^5.12.1",
44 "@typescript-eslint/parser": "^5.12.1",
45 "ajv": "^8.10.0",
46 "ajv-formats": "^2.1.1",
47 "eslint": "^8.10.0",
48 "eslint-config-prettier": "^8.4.0",
49 "eslint-import-resolver-typescript": "^2.5.0",
50 "eslint-plugin-flowtype": "^8.0.3",
51 "eslint-plugin-import": "^2.25.4",
52 "eslint-plugin-jest": "^26.1.1",
53 "eslint-plugin-json": "^3.1.0",
54 "eslint-plugin-jsx-a11y": "^6.5.1",
55 "eslint-plugin-no-only-tests": "^2.6.0",
56 "eslint-plugin-no-skip-tests": "^1.1.0",
57 "eslint-plugin-prettier": "^4.0.0",
58 "eslint-plugin-react": "^7.29.2",
59 "jest": "^27.5.1",
60 "js-yaml": "^4.1.0",
61 "json-schema-to-typescript": "^10.1.5",
62 "prettier": "^2.5.1",
63 "rimraf": "^3.0.2",
64 "ts-jest": "^27.1.3",
65 "ts-loader": "^9.2.7",
66 "typescript": "^4.6.2"
67 }
68}