This repository has been archived by the owner on Jan 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.3 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
{
"name": "knuckle",
"version": "0.11.0",
"description": "Project configuration handler, without efforts",
"license": "MIT",
"author": "Guillaume AMAT <[email protected]>",
"homepage": "https://github.com/GuillaumeAmat/knuckle#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/GuillaumeAmat/knuckle.git"
},
"bugs": {
"url": "https://github.com/GuillaumeAmat/knuckle/issues"
},
"keywords": [
"script",
"lint",
"format",
"test"
],
"engines": {
"node": ">=12.10.0"
},
"files": [
"config",
"dist"
],
"main": "dist/bin/index.js",
"bin": {
"knuckle": "dist/bin/index.js"
},
"scripts": {
"knuckle": "babel-node src/bin/index.js",
"format": "yarn knuckle -- prettier --write 'src/**/*.{js,json}'",
"format:test": "yarn knuckle -- prettier --list-different 'src/**/*.{js,json}'",
"lint-js": "yarn knuckle -- eslint src",
"test": "nyc --cwd=$(pwd) yarn jest --watch",
"test-ci": "nyc --cwd=$(pwd) yarn jest --ci",
"open-coverage-file": "opener coverage/lcov-report/index.html",
"build": "rimraf dist && babel src -d dist",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"preversion": "yarn test && yarn build"
},
"devDependencies": {
"@babel/cli": "^7.8.0",
"@babel/core": "^7.8.0",
"@babel/node": "^7.8.0",
"@babel/plugin-proposal-object-rest-spread": "^7.8.0",
"@babel/plugin-transform-runtime": "^7.8.0",
"@babel/preset-env": "^7.8.0",
"@commitlint/cli": "8.3",
"@commitlint/config-conventional": "8.3",
"all-contributors-cli": "^6.12.0",
"babel-eslint": "10.0",
"concat-stream": "^2.0.0",
"eslint": "6.8",
"eslint-config-prettier": "6.9",
"eslint-plugin-jest": "23.6",
"eslint-plugin-prettier": "3.1",
"husky": "4.0",
"jest": "^24.9.0",
"lint-staged": "9.5",
"nyc": "^15.0.0",
"opener": "^1.5.1",
"prettier": "1.19",
"rimraf": "^3.0.0"
},
"dependencies": {
"@babel/runtime": "^7.8.0",
"commander": "^4.1.0",
"cosmiconfig": "^6.0.0",
"cross-spawn": "^7.0.1",
"inquirer": "^7.0.3",
"lodash.difference": "^4.5.0",
"lodash.has": "^4.5.2",
"lodash.mergewith": "^4.6.2",
"lodash.sorteduniq": "^4.2.0",
"read-pkg-up": "^7.0.1"
}
}