-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.09 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
69
{
"name": "mdjs-viewer",
"version": "0.0.4",
"private": true,
"publishConfig": {
"access": "public"
},
"description": "See mdjs directly on Github.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/open-wc/mdjs-viewer.git"
},
"author": "open-wc",
"homepage": "https://github.com/open-wc/mdjs-viewer/",
"scripts": {
"build": "rollup -c ./rollup.config.js && cp node_modules/github-markdown-css/github-markdown.css ./deps && cp node_modules/es-module-lexer/dist/lexer.js ./deps",
"lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore",
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
"lint:prettier": "prettier \"**/*.js\" --check --ignore-path .gitignore",
"format:prettier": "prettier \"**/*.js\" --write --ignore-path .gitignore",
"lint": "npm run lint:eslint && npm run lint:prettier",
"postinstall": "npm run build",
"format": "npm run format:eslint && npm run format:prettier",
"test": "karma start --coverage",
"test:watch": "karma start --auto-watch=true --single-run=false"
},
"devDependencies": {
"@open-wc/eslint-config": "^2.0.0",
"@open-wc/prettier-config": "^0.1.10",
"@open-wc/testing": "^2.0.0",
"@open-wc/testing-karma": "^3.0.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"deepmerge": "^3.2.0",
"eslint": "^6.1.0",
"husky": "^1.0.0",
"lint-staged": "^8.0.0",
"path": "^0.12.7",
"rollup": "^1.31.1",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-polyfills": "^0.2.1"
},
"eslintConfig": {
"extends": [
"@open-wc/eslint-config",
"eslint-config-prettier"
]
},
"prettier": "@open-wc/prettier-config",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"dependencies": {
"@mdjs/core": "^0.1.0",
"es-module-lexer": "^0.3.17",
"github-markdown-css": "^4.0.0"
}
}