This repository has been archived by the owner on Jan 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
50 lines (50 loc) · 1.66 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@sinonjs/formatio",
"version": "6.0.0",
"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": "^5.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.32.0",
"rollup-plugin-commonjs": "10.1.0"
}
}