-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.55 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": "copy-tasker",
"version": "0.1.1",
"description": "Just copy tasker",
"keywords": [
"copy",
"task",
"tasker"
],
"author": "Itgalaxy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/itgalaxy/copy-tasker.git"
},
"homepage": "https://github.com/itgalaxy/copy-tasker",
"bugs": "https://github.com/itgalaxy/copy-tasker/issues",
"main": "index.js",
"dependencies": {
"meow": "^4.0.0",
"ora": "^1.3.0",
"globby": "^7.1.1",
"cosmiconfig": "^4.0.0",
"fs-extra": "^5.0.0",
"find-cache-dir": "^1.0.0",
"p-limit": "^1.1.0",
"cacache": "^10.0.1",
"serialize-javascript": "^1.4.0"
},
"devDependencies": {
"del-cli": "^1.1.0",
"eslint": "^4.1.1",
"eslint-plugin-ava": "^4.2.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-itgalaxy": "^60.0.0",
"eslint-plugin-jest": "^21.1.0",
"eslint-plugin-jsx-a11y": "^6.0.0",
"eslint-plugin-lodash": "^2.4.3",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-unicorn": "^3.0.0",
"express": "^4.16.2",
"jest": "^22.0.3",
"husky": "^0.14.1",
"lint-staged": "^6.0.0",
"npm-run-all": "^4.0.1",
"npmpub": "^3.1.0",
"prettier": "^1.5.2",
"remark-cli": "^4.0.0",
"remark-preset-lint-itgalaxy": "^12.0.0"
},
"scripts": {
"precommit": "lint-staged",
"lint:eslint": "eslint --cache --report-unused-disable-directives . --ignore-path .gitignore",
"lint:remark": "remark . -i .gitignore -f -q",
"lint:prettier": "prettier --list-different '{src,bin}/**/*.{js,mjs,jsx,md}' '*.{js,mjs,jsx,md}'",
"lint": "npm-run-all -l -p lint:**",
"fix:prettier": "npm run lint:prettier -- --write",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix": "npm-run-all -l -p 'fix:**'",
"pretest": "npm run lint",
"test": "npm run test-only",
"test-only": "exit;jest --coverage",
"release": "npmpub"
},
"eslintConfig": {
"parserOptions": {
"sourceType": "script"
},
"extends": [
"plugin:itgalaxy/jest",
"plugin:itgalaxy/esnext",
"plugin:itgalaxy/node"
],
"overrides": [
{
"files": [
"**/__tests__/**/*.js"
]
}
],
"root": true
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-itgalaxy"
]
},
"engines": {
"node": ">= 6.9.0 || >= 8.9.0"
},
"bin": "index.js",
"files": [
"bin",
"src",
"!**/__tests__"
]
}