-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
60 lines (60 loc) · 1.35 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
{
"name": "nano-staged",
"version": "0.8.0",
"description": "Tiny tool to run commands for modified, staged, and committed git files.",
"author": "Usman Yunusov <[email protected]>",
"license": "MIT",
"repository": "usmanyunusov/nano-staged",
"type": "module",
"bin": "./lib/bin.js",
"exports": "./lib/index.js",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"lint": "prettier --write lib/**/*.js",
"unit": "cross-env CI=true node --loader=esmock --no-warnings ./node_modules/uvu/bin.js test \"\\.test\\.js$\"",
"test": "c8 pnpm unit",
"bench": "node bench/running-time/index.js && node bench/size/index.js"
},
"dependencies": {
"picocolors": "^1.0.0"
},
"devDependencies": {
"c8": "^7.11.2",
"clean-publish": "^3.4.5",
"cross-env": "^7.0.3",
"esmock": "^1.7.5",
"fs-extra": "^10.1.0",
"nanodelay": "^2.0.2",
"nanoid": "^3.3.3",
"prettier": "^2.6.2",
"uvu": "^0.5.3"
},
"clean-publish": {
"cleanDocs": true
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true
},
"c8": {
"include": [
"lib/**/*"
],
"lines": 100,
"check-coverage": true
},
"keywords": [
"runner",
"lint",
"git",
"staged",
"unstaged",
"diff",
"eslint",
"prettier",
"stylelint"
]
}