UNPKG

2.85 kBJSONView Raw
1{
2 "name": "ecmarkup",
3 "version": "9.6.3",
4 "description": "Custom element definitions and core utilities for markup that specifies ECMAScript and related technologies.",
5 "main": "lib/ecmarkup.js",
6 "typings": "lib/ecmarkup.d.ts",
7 "scripts": {
8 "build": "tsc -p src -sourceMap",
9 "build-release": "tsc -p src",
10 "build-spec": "mkdir -p docs && node bin/ecmarkup.js spec/index.html docs/index.html --no-ecma-262-biblio --css-out docs/elements.css --js-out docs/ecmarkup.js",
11 "prepack": "safe-publish-latest && npm run build-release",
12 "test": "mocha",
13 "test-baselines": "mocha test/baselines.js",
14 "update-baselines": "npm --update-baselines run test-baselines",
15 "pretest-published-files": "rm -rf \"ecmarkup-$npm_package_version.tgz\" package",
16 "test-published-files": "npm pack && tar zxvf \"ecmarkup-$npm_package_version.tgz\" && cp -r test package/test && cd package && npm test && cd ..",
17 "posttest-published-files": "rm -rf \"ecmarkup-$npm_package_version.tgz\" package",
18 "lint": "eslint --ext .js,.ts js src test",
19 "format": "prettier --write .",
20 "version": "auto-changelog && git add CHANGELOG.md",
21 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
22 },
23 "bin": {
24 "ecmarkup": "bin/ecmarkup.js",
25 "emu-format": "bin/emu-format.js"
26 },
27 "files": [
28 "/bin",
29 "/lib",
30 "/js",
31 "/css",
32 "/boilerplate",
33 "/ecma262biblio.json"
34 ],
35 "repository": "tc39/ecmarkup",
36 "keywords": [
37 "ecmascript",
38 "javascript",
39 "specs",
40 "specifications",
41 "markup",
42 "markdown",
43 "html",
44 "code"
45 ],
46 "author": "Brian Terlson",
47 "license": "MIT",
48 "dependencies": {
49 "chalk": "^1.1.3",
50 "dedent-js": "^1.0.1",
51 "ecmarkdown": "^6.0.2",
52 "eslint": "^7.29.0",
53 "fast-glob": "^3.2.7",
54 "grammarkdown": "3.1.2",
55 "highlight.js": "11.0.1",
56 "html-escape": "^1.0.2",
57 "js-yaml": "^3.13.1",
58 "jsdom": "11.10.0",
59 "nomnom": "^1.8.1",
60 "prex": "^0.4.7",
61 "promise-debounce": "^1.0.1"
62 },
63 "devDependencies": {
64 "@types/chalk": "^0.4.31",
65 "@types/js-yaml": "^3.12.1",
66 "@types/jsdom": "^11.12.0",
67 "@types/node": "^13.1.8",
68 "@types/nomnom": "0.0.27",
69 "@typescript-eslint/eslint-plugin": "^4.27.0",
70 "@typescript-eslint/parser": "^4.27.0",
71 "auto-changelog": "^1.16.2",
72 "eslint-config-prettier": "^6.10.1",
73 "eslint-plugin-prettier": "^3.1.2",
74 "mocha": "^5.2.0",
75 "parse5": "^4.0.0",
76 "prettier": "^2.0.4",
77 "safe-publish-latest": "^1.1.4",
78 "typescript": "4.3.2"
79 },
80 "auto-changelog": {
81 "output": "CHANGELOG.md",
82 "template": "keepachangelog",
83 "unreleased": false,
84 "commitLimit": false,
85 "backfillLimit": false
86 },
87 "prettier": {
88 "singleQuote": true,
89 "arrowParens": "avoid",
90 "printWidth": 100
91 },
92 "engines": {
93 "node": ">= 12 || ^11.10.1 || ^10.13 || ^8.10"
94 }
95}