UNPKG

2.74 kBJSONView Raw
1{
2 "name": "ecmarkup",
3 "version": "9.4.1",
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": "bin/ecmarkup.js",
24 "files": [
25 "/bin",
26 "/lib",
27 "/js",
28 "/css",
29 "/boilerplate",
30 "/ecma262biblio.json"
31 ],
32 "repository": "tc39/ecmarkup",
33 "keywords": [
34 "ecmascript",
35 "javascript",
36 "specs",
37 "specifications",
38 "markup",
39 "markdown",
40 "html",
41 "code"
42 ],
43 "author": "Brian Terlson",
44 "license": "MIT",
45 "dependencies": {
46 "chalk": "^1.1.3",
47 "ecmarkdown": "^6.0.0",
48 "eslint": "^7.29.0",
49 "grammarkdown": "^3.1.1",
50 "highlight.js": "11.0.1",
51 "html-escape": "^1.0.2",
52 "js-yaml": "^3.13.1",
53 "jsdom": "11.10.0",
54 "nomnom": "^1.8.1",
55 "prex": "^0.4.7",
56 "promise-debounce": "^1.0.1"
57 },
58 "devDependencies": {
59 "@types/chalk": "^0.4.31",
60 "@types/js-yaml": "^3.12.1",
61 "@types/jsdom": "^11.12.0",
62 "@types/node": "^13.1.8",
63 "@types/nomnom": "0.0.27",
64 "@typescript-eslint/eslint-plugin": "^4.27.0",
65 "@typescript-eslint/parser": "^4.27.0",
66 "auto-changelog": "^1.16.2",
67 "eslint-config-prettier": "^6.10.1",
68 "eslint-plugin-prettier": "^3.1.2",
69 "mocha": "^5.2.0",
70 "parse5": "^4.0.0",
71 "prettier": "^2.0.4",
72 "safe-publish-latest": "^1.1.4",
73 "typescript": "^4.3.2"
74 },
75 "auto-changelog": {
76 "output": "CHANGELOG.md",
77 "template": "keepachangelog",
78 "unreleased": false,
79 "commitLimit": false,
80 "backfillLimit": false
81 },
82 "prettier": {
83 "singleQuote": true,
84 "arrowParens": "avoid",
85 "printWidth": 100
86 },
87 "engines": {
88 "node": ">= 12 || ^11.10.1 || ^10.13 || ^8.10"
89 }
90}