source: node_modules/fault/package.json@ e48199a

main
Last change on this file since e48199a was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 1.8 KB
Line 
1{
2 "name": "fault",
3 "version": "1.0.4",
4 "description": "Functional errors with formatted output",
5 "license": "MIT",
6 "keywords": [
7 "error",
8 "exception",
9 "printf",
10 "sprintf",
11 "vsprintf",
12 "format",
13 "string"
14 ],
15 "repository": "wooorm/fault",
16 "bugs": "https://github.com/wooorm/fault/issues",
17 "funding": {
18 "type": "github",
19 "url": "https://github.com/sponsors/wooorm"
20 },
21 "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
22 "contributors": [
23 "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
24 ],
25 "files": [
26 "index.js"
27 ],
28 "dependencies": {
29 "format": "^0.2.0"
30 },
31 "devDependencies": {
32 "browserify": "^16.0.0",
33 "nyc": "^15.0.0",
34 "prettier": "^1.0.0",
35 "remark-cli": "^7.0.0",
36 "remark-preset-wooorm": "^6.0.0",
37 "tape": "^4.0.0",
38 "tinyify": "^2.0.0",
39 "xo": "^0.25.0"
40 },
41 "scripts": {
42 "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
43 "build-bundle": "browserify . -s fault -o fault.js",
44 "build-mangle": "browserify . -s fault -p tinyify -o fault.min.js",
45 "build": "npm run build-bundle && npm run build-mangle",
46 "test-api": "node test",
47 "test-coverage": "nyc --reporter lcov tape test.js",
48 "test": "npm run format && npm run build && npm run test-coverage"
49 },
50 "remarkConfig": {
51 "plugins": [
52 "preset-wooorm"
53 ]
54 },
55 "prettier": {
56 "tabWidth": 2,
57 "useTabs": false,
58 "singleQuote": true,
59 "bracketSpacing": false,
60 "semi": false,
61 "trailingComma": "none"
62 },
63 "xo": {
64 "prettier": true,
65 "esnext": false,
66 "rules": {
67 "unicorn/prefer-reflect-apply": "off"
68 },
69 "ignores": [
70 "fault.js"
71 ]
72 },
73 "nyc": {
74 "check-coverage": true,
75 "lines": 100,
76 "functions": 100,
77 "branches": 100
78 }
79}
Note: See TracBrowser for help on using the repository browser.