-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.58 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.58 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
{
"name": "docs-webcomponent",
"version": "0.0.1",
"description": "Webcomponent for documentation creation",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\"",
"start": "npx parcel start ./example/index.html",
"clean": "rm -rf docs dist && mkdir docs",
"build": "npm run clean && npx parcel build ./example/index.html --experimental-scope-hoisting --public-url docs-webcomponent && cp ./dist/* docs && cp ./docs/index.html ./docs/404.html",
"lint": "npx eslint . --ext .ts",
"lint-fix": "npx eslint . --fix --ext .ts"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Stradivario/docs-webcomponent.git"
},
"author": "Kristiyan Tachev",
"license": "MIT",
"bugs": {
"url": "https://github.com/Stradivario/docs-webcomponent/issues"
},
"browserslist": [
"last 1 chrome versions"
],
"homepage": "https://github.com/Stradivario/docs-webcomponent#readme",
"dependencies": {
"@rhtml/components": "^0.0.24",
"@rhtml/operators": "^0.0.24",
"@rhtml/renderer": "^0.0.24",
"@rxdi/lit-html": "^0.7.42",
"@rxdi/router": "^0.7.40"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"cssnano": "^4.1.10",
"eslint": "^6.7.2",
"husky": "^4.2.3",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-simple-import-sort": "^5.0.0",
"prettier": "^1.19.1",
"typescript": "^3.8.3"
}
}