Răsfoiți Sursa

init package.json for crowi-plus

Yuki Takei 9 ani în urmă
părinte
comite
19a2407917
1 a modificat fișierele cu 35 adăugiri și 38 ștergeri
  1. 35 38
      package.json

+ 35 - 38
package.json

@@ -1,31 +1,43 @@
 {
 {
-  "name": "crowi",
-  "version": "1.6.0",
-  "description": "The simple & powerful Wiki",
+  "name": "crowi-plus",
+  "version": "1.0.0-c1.6.0",
+  "description": "Enhanced Crowi",
   "tags": [
   "tags": [
     "wiki",
     "wiki",
     "communication",
     "communication",
     "documentation",
     "documentation",
     "collaboration"
     "collaboration"
   ],
   ],
-  "author": "Sotaro KARASAWA <sotaro.k@gmail.com>",
+  "author": "Yuki Takei <yuki@weseek.co.jp>",
   "contributors": [
   "contributors": [
-    "Keisuke SATO <riaf@me.com> (http://riaf.jp)",
-    "Shinya Yamaoka <contact@mail.libmacro.com>",
-    "Norio Suzuki <norio.suzuki@gmail.com>"
   ],
   ],
-  "config": {
-    "blanket": {
-      "pattern": "./lib/**/*.js"
-    }
-  },
+  "license": "MIT",
   "repository": {
   "repository": {
     "type": "git",
     "type": "git",
-    "url": "https://github.com/crowi/crowi.git"
+    "url": "https://github.com/weseek/crowi-plus.git"
   },
   },
-  "engines": {
-    "node": "6.x",
-    "npm": "4.x"
+  "bugs": {
+    "url": "https://github.com/weseek/crowi-plus/issues"
+  },
+  "scripts": {
+    "build:dev:watch": "npm run build:dev -- --watch",
+    "build:dev": "npm run clean:public && webpack --config config/webpack.dev.js  --progress --profile",
+    "build:prod": "npm run clean:public && webpack --config config/webpack.prod.js  --progress --profile --bail",
+    "build": "npm run build:dev",
+    "clean:public": "npm run rimraf -- public/js",
+    "clean:dll": "npm run rimraf -- dll",
+    "clean": "npm cache clean && npm run rimraf -- public/js dll",
+    "generate-plugin-definitions-source": "mkdirp tmp/plugins && node bin/generate-plugin-definitions-source.js",
+    "prebuild:dev": "npm run generate-plugin-definitions-source",
+    "prebuild:prod": "npm run generate-plugin-definitions-source",
+    "prestart": "npm run build:prod",
+    "rimraf": "rimraf",
+    "server:watch": "node-dev app.js",
+    "server:prod": "node app.js --production",
+    "server": "node app.js",
+    "start": "npm run server:prod",
+    "test": "",
+    "webpack": "webpack"
   },
   },
   "dependencies": {
   "dependencies": {
     "async": "~1.5.0",
     "async": "~1.5.0",
@@ -124,28 +136,13 @@
     "webpack-dll-bundles-plugin": "^1.0.0-beta.5",
     "webpack-dll-bundles-plugin": "^1.0.0-beta.5",
     "webpack-merge": "~3.0.0"
     "webpack-merge": "~3.0.0"
   },
   },
-  "license": "MIT",
-  "scripts": {
-    "build:dev:watch": "npm run build:dev -- --watch",
-    "build:dev": "npm run clean:public && webpack --config config/webpack.dev.js  --progress --profile",
-    "build:prod": "npm run clean:public && webpack --config config/webpack.prod.js  --progress --profile --bail",
-    "build": "npm run build:dev",
-    "clean:public": "npm run rimraf -- public/js",
-    "clean:dll": "npm run rimraf -- dll",
-    "clean": "npm cache clean && npm run rimraf -- public/js dll",
-    "generate-plugin-definitions-source": "mkdirp tmp/plugins && node bin/generate-plugin-definitions-source.js",
-    "prebuild:dev": "npm run generate-plugin-definitions-source",
-    "prebuild:prod": "npm run generate-plugin-definitions-source",
-    "prestart": "npm run build:prod",
-    "rimraf": "rimraf",
-    "server:watch": "node-dev app.js",
-    "server:prod": "node app.js --production",
-    "server": "node app.js",
-    "start": "npm run server:prod",
-    "test": "",
-    "webpack": "webpack"
+  "engines": {
+    "node": "6.x",
+    "npm": "4.x"
   },
   },
-  "bugs": {
-    "url": "https://github.com/crowi/crowi/issues"
+  "config": {
+    "blanket": {
+      "pattern": "./lib/**/*.js"
+    }
   }
   }
 }
 }