This repository was archived by the owner on Jun 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.54 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
73
74
75
76
77
{
"name": "cell-common",
"version": "0.6.1",
"description": "Common Web Components library based on WebCell engine",
"keywords": [
"component",
"common",
"web-cell"
],
"license": "LGPL-3.0",
"author": "shiy2008@gmail.com",
"homepage": "https://web-cell.tk/cell-common/",
"repository": {
"type": "git",
"url": "git+https://github.com/EasyWebApp/cell-common.git"
},
"bugs": {
"url": "https://github.com/EasyWebApp/cell-common/issues"
},
"module": "dist/index.js",
"directories": {
"lib": "source/",
"test": "test/"
},
"scripts": {
"format": "prettier --write \"{,!(node_modules|.git|dist|docs)/**/}*.{html,md,css,less,js,json,yml,yaml}\"",
"lint": "eslint source/ test/ --ignore-pattern test/dist/ --fix",
"pack": "npm run format && npm run lint && web-cell pack",
"pack-test": "cd test/ && web-cell pack",
"start": "npm run pack-test && web-cell preview",
"test": "npm run pack && npm run pack-test && mocha --exit",
"debug": "npm run format && web-cell pack && npm run pack-test && mocha --inspect-brk --no-timeouts",
"build": "npm test && esdoc",
"help": "esdoc && open-cli docs/index.html",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add ."
}
},
"dependencies": {
"dom-renderer": "^1.0.1",
"web-cell": "^1.2.0"
},
"peerDependencies": {
"markdown-ime": "^1.0.3",
"marked": "^0.6.2",
"turndown": "^5.0.3",
"turndown-plugin-gfm": "^1.0.2"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"@webcomponents/webcomponentsjs": "^2.2.10",
"babel-eslint": "^10.0.1",
"bootstrap": "4.2.1",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-external-webapi-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.16.0",
"husky": "^2.3.0",
"markdown-ime": "^1.0.3",
"marked": "^0.6.2",
"mocha": "^6.1.4",
"open-cli": "^5.0.0",
"prettier": "^1.17.1",
"puppeteer-browser": "^0.3.8",
"should": "^13.2.3",
"turndown": "^5.0.3",
"turndown-plugin-gfm": "^1.0.2",
"web-cell-cli": "^1.0.0-beta"
}
}