This repository has been archived by the owner on Aug 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.49 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
{
"name": "lint-my-app",
"version": "0.0.0-development",
"description": "So you can write your app instead of lint it!",
"keywords": [
"check",
"code",
"eslint",
"fix",
"fixjson",
"format",
"imagemin",
"lint",
"lint-staged",
"optimize",
"quality",
"sort",
"staged",
"stylelint",
"validate"
],
"homepage": "https://saiichihashimoto.github.io/lint-my-app/",
"bugs": {
"url": "https://github.com/saiichihashimoto/lint-my-app/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saiichihashimoto/lint-my-app.git"
},
"license": "MIT",
"main": "lib/lint-staged.config.js",
"bin": "lib/lint-my-app.js",
"files": [
"husky.js",
"lib"
],
"scripts": {
"build": "babel src --out-dir lib --source-maps --delete-dir-on-start --verbose --ignore \"**/*.spec.js\" && cp src/*.json lib",
"fix": "npm run lint-my-app -- fix",
"lint": "npm run lint-my-app -- lint",
"lint-my-app": "npm run build && ./lib/lint-my-app.js",
"staged": "npm run lint-my-app -- staged",
"test": "jest --verbose $(if [ -z ${CI+x} ]; then echo --watch; else echo --color --coverage; fi)",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"husky": {
"hooks": {
"pre-commit": "npm run staged",
"pre-push": "npm run lint"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"eslintConfig": {
"extends": "saiichihashimoto"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"commander": "4.1.1",
"cosmiconfig": "6.0.0",
"eslint": "6.8.0",
"execa": "4.0.3",
"fixjson": "1.1.0",
"globby": "10.0.2",
"imagemin-lint-staged": "0.4.0",
"jsonlint": "1.6.3",
"lint-staged": "9.5.0",
"listr": "0.14.3",
"pkg-ok": "2.3.1",
"sort-package-json": "1.44.0",
"stylelint": "stylelint/stylelint#d3a6cb47fc2d5c59e61f6fac618c6121b316b97c",
"update-notifier": "4.1.0",
"snyk": "^1.373.1"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.8.6",
"@babel/preset-env": "7.8.6",
"@stryker-mutator/babel-transpiler": "2.4.0",
"@stryker-mutator/core": "2.4.0",
"@stryker-mutator/javascript-mutator": "2.4.0",
"@stryker-mutator/jest-runner": "2.4.0",
"cz-conventional-changelog": "3.1.0",
"eslint-config-saiichihashimoto": "2.1.8",
"husky": "4.2.3",
"jest": "24.1.0"
},
"engines": {
"node": "12.8.0"
},
"snyk": true
}