Yuki Takei 9 лет назад
Родитель
Сommit
8e96494eb9

+ 13 - 0
packages/growi-plugin-pukiwiki-like-linker/.editorconfig

@@ -0,0 +1,13 @@
+root = true
+
+[*]
+charset = utf-8
+indent_style = space
+indent_size = 2
+end_of_line = lf
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+[*.md]
+insert_final_newline = false
+trim_trailing_whitespace = false

+ 36 - 0
packages/growi-plugin-pukiwiki-like-linker/.gitignore

@@ -0,0 +1,36 @@
+# Logs
+logs
+*.log
+npm-debug.log.*
+
+# OS generated files #
+.DS_Store
+.Trash-*
+ehthumbs.db
+Icon?
+Thumbs.db
+
+# Node Files #
+/node_modules/
+/bower_components/
+npm-debug.log
+/npm-debug.log.*
+
+# Dist #
+/dist
+/public/__build__/
+/src/*/__build__/
+/__build__/**
+/public/dist/
+/src/*/dist/
+/dist/**
+/.awcache
+.webpack.json
+/compiled/
+
+# Doc #
+/doc/
+
+# IDE #
+.idea
+.vscode

+ 19 - 0
packages/growi-plugin-pukiwiki-like-linker/package.json

@@ -0,0 +1,19 @@
+{
+  "name": "crowi-plugin-pukiwiki-like-linker",
+  "version": "1.0.0",
+  "description": "The Crowi Plugin to add PukiwikiLikeLinker",
+  "main": "index.js",
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "repository": {
+    "type": "git",
+    "url": "https://github.com/yuki-takei/crowi-plugin-pukiwiki-like-linker.git"
+  },
+  "author": "Yuki Takei <yuki@weseek.co.jp>",
+  "license": "MIT",
+  "bugs": {
+    "url": "https://github.com/yuki-takei/crowi-plugin-pukiwiki-like-linker/issues"
+  },
+  "homepage": "https://github.com/yuki-takei/crowi-plugin-pukiwiki-like-linker#readme"
+}