-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "@codedoc/coding-blog-plugin",
"version": "0.1.12",
"description": "A CODEDOC plugin for blogging.",
"main": "dist/es5/index.js",
"module": "dist/es6/index.js",
"types": "dist/es6/index.d.ts",
"sdhTransport": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-es5": "tsc -p conf/typescript/es5.json",
"build-es6": "tsc -p conf/typescript/es6.json",
"build": "npm run build-es5 && npm run build-es6"
},
"sideEffects": false,
"files": [
"dist/es6",
"dist/es5"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CONNECT-platform/coding-blog-plugin.git"
},
"keywords": [
"doc",
"blog",
"documentation",
"blogging",
"codedoc"
],
"author": "Eugene Ghanizadeh Khoub <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/CONNECT-platform/coding-blog-plugin/issues"
},
"homepage": "https://github.com/CONNECT-platform/coding-blog-plugin#readme",
"peerDependencies": {
"@codedoc/core": ">=0.2.5"
},
"devDependencies": {
"@codedoc/core": "^0.2.23",
"typescript": "^3.9.2"
},
"dependencies": {
"feed": "^4.2.0",
"simple-git": "^2.9.0"
}
}