| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "name": "growi-pluginkit",
- "version": "1.1.0",
- "description": "The GROWI Plugin Kit to develop plugins",
- "main": "lib/index.js",
- "files": [
- "lib"
- ],
- "scripts": {
- "build": "babel src --out-dir lib --source-maps inline",
- "clean": "npm cache clean && npm run rimraf -- lib",
- "prebuild": "npm run clean",
- "prewatch": "npm run clean",
- "watch": "babel src --out-dir lib --watch --source-maps inline",
- "rimraf": "rimraf",
- "test": "mocha --compilers js:babel-register test/*.js"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/weseek/growi-pluginkit.git"
- },
- "author": "Yuki Takei <yuki@weseek.co.jp>",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/weseek/growi-pluginkit/issues"
- },
- "dependencies": {},
- "homepage": "https://github.com/weseek/growi-pluginkit#readme",
- "devDependencies": {
- "babel-cli": "^6.26.0",
- "babel-plugin-add-module-exports": "^0.2.1",
- "babel-plugin-transform-class-properties": "^6.24.0",
- "babel-preset-env": "^1.6.0",
- "babel-preset-power-assert": "^2.0.0",
- "babel-register": "^6.23.0",
- "mocha": "^5.0.4",
- "power-assert": "^1.4.2",
- "rimraf": "^2.6.1"
- }
- }
|