| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "name": "growi-plugin-lsx",
- "version": "2.0.0",
- "description": "GROWI plugin to add lsx tag",
- "keywords": [
- "growi",
- "growi-plugin"
- ],
- "main": "lib/index.js",
- "files": [
- "lib", "src"
- ],
- "scripts": {
- "build:watch": "npm run build -- --watch",
- "build": "babel src --out-dir lib --source-maps inline",
- "clean": "npm run rimraf -- lib",
- "resources": "mkdirp lib/resource/css && ncp src/resource/css lib/resource/css",
- "prebuild:watch": "npm run clean && npm run resources",
- "prebuild": "npm run resources",
- "prepublish": "npm run clean && npm run resources && npm run build",
- "rimraf": "rimraf",
- "test": ""
- },
- "repository": "https://github.com/weseek/growi-plugin-lsx.git",
- "author": "Yuki Takei <yuki@weseek.co.jp>",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/weseek/growi-plugin-lsx/issues"
- },
- "homepage": "https://github.com/weseek/growi-plugin-lsx#readme",
- "dependencies": {
- "growi-pluginkit": "^1.1.0",
- "react": "^16.2.0",
- "react-dom": "^16.2.0",
- "url": "^0.11.0"
- },
- "devDependencies": {
- "babel-cli": "^6.24.1",
- "babel-preset-env": "^1.6.0",
- "babel-preset-power-assert": "^2.0.0",
- "babel-preset-react": "^6.24.1",
- "babel-register": "^6.23.0",
- "eslint": "^5.9.0",
- "eslint-plugin-react": "^7.11.1",
- "mkdirp": "^0.5.1",
- "mocha": "^5.0.4",
- "ncp": "^2.0.0",
- "power-assert": "^1.4.2",
- "rimraf": "^2.6.1"
- },
- "engines": {
- "node": ">=8.11.1 <9",
- "npm": ">=5.6.0 <7",
- "yarn": "^1.5.1"
- }
- }
|