This repository has been archived by the owner on Aug 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.84 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
{
"name": "arum-aruff",
"version": "0.0.2",
"description": "helps with removing dead components",
"keywords": [
"clean",
"react",
"esnext",
"commonjs",
"dead code"
],
"main": "dist/src/index.js",
"repository": "git@github.com:one19/arum-aruff.git",
"author": "Drew Showalter <maelstroswim@gmail.com>",
"license": "MIT",
"bin": {
"arum-aruff": "bin/index.js"
},
"private": false,
"files": [
"bin/index.js",
"dist/index.js",
"dist/index.map"
],
"scripts": {
"test": "ava",
"lint": "eslint . --fix",
"prepush": "snyk test && yarn test",
"precommit": "yarn build && lint-staged",
"coverage": "npx nyc ava && npx nyc report --reporter=html",
"prebuild": "rm -rf .cache bin dist coverage .nyc_output",
"build": "npx parcel build -o dist/index.js -t node index.js && ./shebang_it.js",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check"
},
"engines": {
"node": ">=10.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"ava": {
"require": [
"babel-register"
],
"cache": false
},
"babel": {
"presets": [
"stage-1",
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"dependencies": {},
"devDependencies": {
"ava": "^0.25.0",
"babel-eslint": "^8.2.6",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-1": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.4",
"mock-fs": "^4.5.0",
"nyc": "^12.0.2",
"parcel-bundler": "^1.9.4",
"prettier": "^1.12.1",
"snyk": "^1.90.2"
}
}