-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 2.04 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
{
"name": "myst-spec",
"version": "0.0.5",
"description": "MyST schema, testcases, and typescript types",
"author": "Franklin Koch <[email protected]>",
"homepage": "https://github.com/executablebooks/myst-spec",
"license": "MIT",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"markdown",
"myst",
"jupyter",
"jupyter-book"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/executablebooks/myst-spec.git"
},
"scripts": {
"build": "npm run clean && tsc index.ts && node index.js",
"docs": "npm run build && jupyter-book build docs",
"docs:quick": "jupyter-book build docs",
"clean": "rimraf index.js dist",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest",
"test:watch": "node --experimental-vm-modules ./node_modules/.bin/jest --watchAll",
"lint": "prettier --write *.ts schema/*.ts",
"prepublishOnly": "npm run build;"
},
"bugs": {
"url": "https://github.com/executablebooks/myst-spec/issues"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"ajv": "^8.10.0",
"ajv-formats": "^2.1.1",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-no-skip-tests": "^1.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.2",
"jest": "^27.5.1",
"js-yaml": "^4.1.0",
"json-schema-to-typescript": "^10.1.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.7",
"typescript": "^4.6.2"
}
}