forked from tc39/ecmarkup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.25 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.25 KB
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
{
"name": "ecmarkup",
"version": "3.19.0",
"description": "Custom element definitions and core utilities for markup that specifies ECMAScript and related technologies.",
"main": "lib/ecmarkup.js",
"typings": "lib/ecmarkup.d.ts",
"scripts": {
"build": "tsc -p src -sourceMap -noEmitHelpers",
"build-release": "tsc -p src",
"prepublish": "safe-publish-latest && npm run build-release",
"pretest": "npm run build",
"test": "mocha && npm run lint",
"lint": "eslint --ext .js,.ts .",
"update-pages": "node bin/ecmarkup.js spec/index.html _index.html && git checkout gh-pages && rm index.html && mv _index.html index.html && git add index.html && git commit -m \"update pages\" && git checkout master",
"update-baselines": "echo 'for f in test/*.html; do node bin/ecmarkup.js $f test/baselines/reference/$(basename $f); done' | bash",
"version": "auto-changelog && git add CHANGELOG.md",
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
},
"bin": "bin/ecmarkup.js",
"repository": "bterlson/ecmarkup",
"keywords": [
"ecmascript",
"javascript",
"specs",
"specifications",
"markup",
"markdown",
"html",
"code"
],
"author": "Brian Terlson",
"license": "MIT",
"dependencies": {
"bluebird": "^3.7.2",
"chalk": "^1.1.3",
"ecmarkdown": "^3.0.9",
"grammarkdown": "^2.0.12",
"he": "^1.2.0",
"highlight.js": "^9.17.1",
"html-escape": "^1.0.2",
"js-yaml": "^3.13.1",
"jsdom": "11.10.0",
"nomnom": "^1.8.1",
"prex": "^0.4.6",
"promise-debounce": "^1.0.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.29",
"@types/chalk": "^0.4.31",
"@types/he": "^1.1.0",
"@types/highlight.js": "^9.12.3",
"@types/js-yaml": "^3.12.1",
"@types/jsdom": "^11.12.0",
"@types/node": "^13.1.8",
"@types/nomnom": "0.0.27",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"auto-changelog": "^1.16.2",
"diff": "^2.2.3",
"eslint": "^6.8.0",
"mocha": "^5.2.0",
"safe-publish-latest": "^1.1.4",
"typescript": "^3.8.2"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": false,
"commitLimit": false,
"backfillLimit": false
}
}