generated from open-wc/cem-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.78 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
{
"name": "cem-plugin-docsify",
"version": "0.3.0",
"description": "A custom-elements-manifest plugin that generates a docsify site for your element",
"license": "MIT",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "rimraf dist && tsc && cp -r src/templates/ ./dist",
"build:test": "tsc -p tsconfig.test.json",
"start": "yarn build && node dev.js",
"start:watch": "yarn build && nodemon dev.js --ext \"ts,js,json\" & yarn docs:serve",
"test": "rimraf dist__test && yarn build:test && yarn test:run",
"test:run": "node --experimental-json-modules ./node_modules/.bin/uvu dist__test/test",
"test:watch": "watchlist src test -- yarn test",
"docs:serve": "wds --root-dir=docs --node-resolve --watch",
"postbuild": "sh ./scripts/prepare.sh"
},
"keywords": [
"custom-elements",
"custom-elements-json",
"custom-elements-manifest",
"customelements",
"webcomponents",
"customelementsjson",
"customelementsmanifest",
"docsify"
],
"author": "Benjamin Pickford",
"devDependencies": {
"@types/mustache": "^4.1.2",
"@web/dev-server": "^0.1.18",
"custom-elements-manifest": "^1.0.0",
"globby": "^11.0.3",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"ts-node": "^10.1.0",
"tslib": "^2.3.0",
"typescript": "^4.3.2",
"uvu": "^0.5.1",
"watchlist": "^0.2.3"
},
"dependencies": {
"@custom-elements-manifest/analyzer": "^0.1.14",
"mustache": "^4.2.0"
},
"homepage": "/~https://github.com/bmpickford/cem-plugin-docsify#readme",
"repository": {
"type": "git",
"url": "git+/~https://github.com/bmpickford/cem-plugin-docsify.git"
},
"bugs": {
"url": "/~https://github.com/bmpickford/cem-plugin-docsify/issues"
}
}