51 lines
1.7 KiB
JSON
51 lines
1.7 KiB
JSON
{
|
|
"name": "@sinonjs/formatio",
|
|
"version": "5.0.1",
|
|
"description": "Human-readable object formatting",
|
|
"homepage": "https://sinonjs.github.io/formatio/",
|
|
"author": "Christian Johansen",
|
|
"license": "BSD-3-Clause",
|
|
"main": "./lib/formatio",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/sinonjs/formatio.git"
|
|
},
|
|
"files": [
|
|
"lib/**/*[^test].js"
|
|
],
|
|
"scripts": {
|
|
"build": "npm run build:dist-folder && npm run build:bundle",
|
|
"build:bundle": "rollup -c > dist/formatio.js",
|
|
"build:dist-folder": "mkdirp dist",
|
|
"lint": "eslint .",
|
|
"prepublishOnly": "npm run build && mkdocs gh-deploy -r upstream || mkdocs gh-deploy -r origin",
|
|
"test": "mocha 'lib/**/*.test.js'",
|
|
"test-check-coverage": "npm run test-coverage && nyc check-coverage --branches 100 --functions 100 --lines 100",
|
|
"test-coverage": "nyc --reporter text --reporter html --reporter lcovonly npm run test",
|
|
"preversion": "npm run test-check-coverage",
|
|
"version": "changes --commits --footer",
|
|
"postversion": "git push --follow-tags && npm publish --access public"
|
|
},
|
|
"dependencies": {
|
|
"@sinonjs/commons": "^1",
|
|
"@sinonjs/samsam": "^5.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@sinonjs/referee": "^4.0.0",
|
|
"@studio/changes": "^2.0.0",
|
|
"eslint": "^6.5.1",
|
|
"eslint-config-prettier": "^6.4.0",
|
|
"eslint-config-sinon": "^3.0.1",
|
|
"eslint-plugin-ie11": "^1.0.0",
|
|
"eslint-plugin-mocha": "^6.1.1",
|
|
"eslint-plugin-prettier": "^3.1.1",
|
|
"jsdom": "^16.1.0",
|
|
"jsdom-global": "^3.0.2",
|
|
"mocha": "^7.0.1",
|
|
"nyc": "^15.0.0",
|
|
"prettier": "^1.18.2",
|
|
"rollup": "1.31.0",
|
|
"rollup-plugin-commonjs": "10.1.0"
|
|
}
|
|
}
|