-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
55 lines (55 loc) · 1.4 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
{
"name": "ecmarkdown",
"version": "8.1.0",
"description": "A compiler for \"Ecmarkdown\" algorithm shorthand into HTML.",
"main": "dist/ecmarkdown.js",
"scripts": {
"build": "tsc -p src",
"prepublish": "npm run build",
"test": "mocha test/",
"rebaseline": "UPDATE_SNAPSHOTS=true npm run test",
"lint": "eslint --ext .js,.ts src test",
"format": "prettier --write src test"
},
"repository": "https://github.com/tc39/ecmarkdown",
"keywords": [
"ecmascript",
"javascript",
"specs",
"typography",
"markup",
"markdown",
"html",
"code"
],
"files": [
"dist/*.js",
"dist/*.d.ts"
],
"dependencies": {
"escape-html": "^1.0.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"inline-elements": "^1.0.0",
"js-beautify": "1.13.0",
"mocha": "^7.1.1",
"prettier": "^2.0.4",
"typescript": "^3.8.3"
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"printWidth": 100
},
"author": "Domenic Denicola <[email protected]> (https://domenic.me/)",
"contributors": [
"Domenic Denicola <[email protected]> (https://domenic.me/)",
"Brian Terlson <[email protected]> (https://github.com/bterlson)"
],
"license": "WTFPL"
}