generated from boneskull/boneskull-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.26 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "packtester",
"version": "0.2.1",
"description": "Assert your published package actually works",
"main": "src/packtester.js",
"scripts": {
"posttest": "markdownlint \"*.md\" && eslint .",
"pretest": "node --experimental-modules --no-warnings src/cli.js",
"test": "nyc mocha \"test/**/*.spec.js\"",
"release": "standard-version -a"
},
"repository": {
"type": "git",
"url": "https://github.com/boneskull/packtester"
},
"keywords": [
"testing",
"smoke",
"check",
"sanity",
"pack",
"publish",
"release",
"prerelease",
"npm",
"package",
"is-promise",
"prepublish",
"prepublishOnly",
"production",
"test"
],
"author": "Christopher Hiller <[email protected]> (https://boneskull.com/)",
"license": "Apache-2.0",
"engines": {
"node": ">=10"
},
"bin": {
"packtester": "src/cli.js"
},
"files": [
"src"
],
"dependencies": {
"consola": "^2.15.0",
"cpy": "^8.1.1",
"execa": "^4.0.3",
"globby": "^11.0.1",
"read-pkg-up": "^7.0.1",
"stack-utils": "^2.0.2",
"tmp-promise": "^3.0.2",
"which": "^2.0.2",
"yargs": "^16.0.3"
},
"devDependencies": {
"@types/node": "^14.11.5",
"@types/yargs": "^15.0.7",
"babel-eslint": "^10.1.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"markdownlint-cli": "^0.24.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"sinon": "^9.2.0",
"standard-version": "^9.0.0",
"type-fest": "^0.17.0",
"unexpected": "^11.15.0",
"unexpected-sinon": "^10.11.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.{yml,md}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": true,
"bracketSpacing": false,
"endOfLine": "auto",
"trailingComma": "none",
"arrowParens": "avoid"
}
}