UNPKG

broccoli-source

Version:

Broccoli plugin for referring to source directories on the file system

73 lines (72 loc) 1.82 kB
{ "name": "broccoli-source", "version": "3.0.1", "description": "Broccoli plugin for referring to source directories on the file system", "keywords": [ "broccoli-plugin" ], "repository": { "type": "git", "url": "https://github.com/broccolijs/broccoli-source" }, "license": "MIT", "author": "Jo Liss <joliss42@gmail.com>", "files": [ "dist/src" ], "main": "dist/src/index.js", "types": "dist/src/index.d.ts", "scripts": { "build": "tsc", "clean": "rm -rf dist", "lint": "eslint **/*.ts", "prepare": "yarn build", "release": "release-it", "test": "yarn build && yarn test:pre && yarn test:js", "test:js": "mocha dist/test/**/*.test.js", "test:pre": "multidep test/multidep.json", "watch": "tsc --watch" }, "dependencies": { "broccoli-node-api": "^1.6.0" }, "devDependencies": { "@types/chai": "^4.1.7", "@types/chai-as-promised": "^7.1.0", "@types/mocha": "^5.2.6", "@types/node": "^11.13.4", "@typescript-eslint/eslint-plugin": "^1.6.0", "@typescript-eslint/parser": "^1.6.0", "chai": "^3.2.0", "chai-as-promised": "^5.1.0", "eslint": "^5.16.0", "eslint-config-prettier": "^4.1.0", "eslint-plugin-mocha": "^5.3.0", "eslint-plugin-prettier": "^3.0.1", "mocha": "^6.1.2", "multidep": "^2.0.0", "prettier": "^1.16.4", "release-it": "^12.2.1", "release-it-lerna-changelog": "^1.0.3", "typescript": "^3.4.3" }, "engines": { "node": "8.* || 10.* || >= 12.*" }, "publishConfig": { "registry": "https://registry.npmjs.org" }, "release-it": { "plugins": { "release-it-lerna-changelog": { "infile": "CHANGELOG.md" } }, "git": { "tagName": "v${version}" }, "github": { "release": true } } }