UNPKG

@helpscout/helix

Version:

A Faker-powered fixture generator for Javascript

129 lines (128 loc) 3.07 kB
{ "name": "@helpscout/helix", "private": false, "version": "0.2.0", "description": "A Faker-powered fixture generator for Javascript", "main": "lib/index.js", "scripts": { "build:js": "cross-env babel src --out-dir lib --ignore tests,**/*.test.js", "build": "npm run clean && npm run pretty && npm run build:js", "clean": "rimraf coverage lib es dist", "coverage": "nyc report --temp-directory=coverage --reporter=text-lcov | coveralls", "dev": "npm run test:dev", "standard": "standard 'src/**/*.js'", "pretty": "npm run standard -- --fix", "release:beta": "np --yolo --any-branch", "release:patch": "np patch --no-yarn", "release:minor": "np minor --no-yarn", "release:major": "np major --no-yarn", "release": "npm run release:patch", "start": "npm run dev", "test": "npm run test:coverage", "test:coverage": "npm run test:dev -- --coverage", "test:dev": "node scripts/test.js --env=jsdom", "version": "npm run build" }, "author": "ItsJonQ <hello@jonquach.com> (http://jonquach.com)", "contributors": [ "Pierre-Luc Babin <plbabin@gmail.com>" ], "repository": { "type": "git", "url": "git+https://github.com/helpscout/helix.git" }, "bugs": { "url": "https://github.com/helpscout/helix/issues" }, "publishConfig": { "access": "public" }, "keywords": [ "faker", "spec", "compose", "fixtures", "helix", "mock", "data" ], "license": "MIT", "dependencies": { "faker": "5.5.3", "lodash": "^4.17.21" }, "devDependencies": { "@babel/cli": "7.10.5", "@babel/core": "7.11.1", "@babel/preset-env": "7.11.0", "babel-jest": "26.6.3", "babel-plugin-add-module-exports": "1.0.4", "braces": "3.0.2", "coveralls": "3.1.0", "cross-env": "7.0.3", "cryptiles": "^4.1.3", "hoek": "6.1.3", "jest": "26.6.3", "jest-cli": "26.6.3", "np": "7.5.0", "nyc": "15.1.0", "rimraf": "3.0.2", "standard": "16.0.3" }, "nyc": { "exclude": [ "config/**/*.js", "dist/**/*.js", "es/**/*.js", "lib/**/*.js", "scripts/**/*.js", "src/**/*.fixture.js" ], "cache": false }, "jest": { "collectCoverageFrom": [ "src/**/*.{js,jsx}" ], "testMatch": [ "<rootDir>/src/**/__tests__/**/*.js?(x)", "<rootDir>/src/**/?(*.)(spec|test).js?(x)" ], "testEnvironment": "node", "testURL": "http://localhost", "transform": { "^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest" }, "transformIgnorePatterns": [ "[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$" ], "moduleFileExtensions": [ "web.js", "js", "json", "web.jsx", "jsx" ] }, "standard": { "ignore": [ "es", "dist", "lib" ], "globals": [ "Event", "describe", "context", "before", "beforeEach", "after", "afterEach", "it", "expect", "jasmine", "jest", "test" ] } }