| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "name": "crowi-pluginkit",
- "version": "1.0.4",
- "description": "The Crowi 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/crowi-pluginkit.git"
- },
- "author": "Yuki Takei <yuki@weseek.co.jp>",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/weseek/crowi-pluginkit/issues"
- },
- "homepage": "https://github.com/weseek/crowi-pluginkit#readme",
- "dependencies": {
- "app-root-path": "^2.0.1"
- },
- "devDependencies": {
- "babel-cli": "^6.23.0",
- "babel-plugin-add-module-exports": "^0.2.1",
- "babel-plugin-transform-class-properties": "^6.23.0",
- "babel-preset-es2015": "^6.22.0",
- "babel-preset-power-assert": "^1.0.0",
- "babel-register": "^6.23.0",
- "power-assert": "^1.4.2",
- "rimraf": "^2.6.1"
- }
- }
|