|
| 1 | +{ |
| 2 | + "name": "embark-suggestions", |
| 3 | + "version": "5.1.0-nightly.0", |
| 4 | + "author": "Iuri Matias <[email protected]>", |
| 5 | + "contributors": [], |
| 6 | + "description": "Suggestions plugin for Embark", |
| 7 | + "homepage": "https://github.com/embark-framework/embark/tree/master/packages/plugins/suggestions#readme", |
| 8 | + "bugs": "https://github.com/embark-framework/embark/issues", |
| 9 | + "keywords": [], |
| 10 | + "files": [ |
| 11 | + "dist" |
| 12 | + ], |
| 13 | + "license": "MIT", |
| 14 | + "repository": { |
| 15 | + "directory": "packages/plugins/suggestions", |
| 16 | + "type": "git", |
| 17 | + "url": "https://github.com/embark-framework/embark.git" |
| 18 | + }, |
| 19 | + "main": "./dist/index.js", |
| 20 | + "types": "./dist/index.d.ts", |
| 21 | + "embark-collective": { |
| 22 | + "build:node": true, |
| 23 | + "typecheck": true |
| 24 | + }, |
| 25 | + "scripts": { |
| 26 | + "_build": "npm run solo -- build", |
| 27 | + "_typecheck": "npm run solo -- typecheck", |
| 28 | + "ci": "npm run qa", |
| 29 | + "clean": "npm run reset", |
| 30 | + "lint": "npm-run-all lint:*", |
| 31 | + "lint:ts": "tslint -c tslint.json \"src/**/*.ts\"", |
| 32 | + "qa": "npm-run-all lint _typecheck _build test", |
| 33 | + "reset": "npx rimraf dist embark-*.tgz package", |
| 34 | + "solo": "embark-solo", |
| 35 | + "test": "jest" |
| 36 | + }, |
| 37 | + "dependencies": { |
| 38 | + "@babel/runtime-corejs3": "7.7.4", |
| 39 | + "core-js": "3.4.3", |
| 40 | + "embark-core": "^5.1.0-nightly.0", |
| 41 | + "embark-utils": "^5.1.0-nightly.0", |
| 42 | + "fs-extra": "8.1.0" |
| 43 | + }, |
| 44 | + "devDependencies": { |
| 45 | + "@babel/core": "7.7.4", |
| 46 | + "babel-jest": "24.9.0", |
| 47 | + "embark-solo": "^5.1.0-nightly.0", |
| 48 | + "embark-testing": "^5.1.0-nightly.0", |
| 49 | + "eslint": "5.7.0", |
| 50 | + "npm-run-all": "4.1.5", |
| 51 | + "rimraf": "3.0.0", |
| 52 | + "tslint": "5.20.1", |
| 53 | + "typescript": "3.7.2" |
| 54 | + }, |
| 55 | + "engines": { |
| 56 | + "node": ">=10.17.0 <12.0.0", |
| 57 | + "npm": ">=6.11.3", |
| 58 | + "yarn": ">=1.19.1" |
| 59 | + }, |
| 60 | + "jest": { |
| 61 | + "collectCoverage": true, |
| 62 | + "testEnvironment": "node", |
| 63 | + "testMatch": [ |
| 64 | + "**/test/**/*.js" |
| 65 | + ], |
| 66 | + "transform": { |
| 67 | + "\\.(js|ts)$": [ |
| 68 | + "babel-jest", |
| 69 | + { |
| 70 | + "rootMode": "upward" |
| 71 | + } |
| 72 | + ] |
| 73 | + } |
| 74 | + } |
| 75 | +} |
| 76 | + |
0 commit comments