-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.26 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
101
102
103
104
105
106
107
{
"name": "eslint-plugin-row-num",
"version": "2.0.1",
"description": "ESLint plugin to update row numbers on each console.log",
"keywords": [
"console",
"eslint",
"eslint-plugin",
"eslintplugin",
"js-row-num",
"log",
"num",
"numbers",
"row",
"row-num",
"update"
],
"homepage": "https://codsen.com/os/eslint-plugin-row-num/",
"repository": {
"type": "git",
"url": "https://github.com/codsen/eslint-plugin-row-num.git"
},
"license": "MIT",
"author": {
"name": "Roy Revelt",
"email": "roy@codsen.com",
"url": "https://codsen.com"
},
"main": "dist/eslint-plugin-row-num.cjs.js",
"module": "dist/eslint-plugin-row-num.esm.js",
"types": "types/index.d.ts",
"scripts": {
"build": "rollup -c",
"ci_test": "npm run build && npm run format && tap --no-only --reporter=silent --output-file=testStats.md && npm run clean_cov",
"dev": "rollup -c --dev",
"devunittest": "npm run dev && tap --only -R 'base'",
"format": "npm run prettier && npm run lint",
"lint": "eslint . --ext .js --ext .ts --fix --quiet",
"perf": "node perf/check",
"prettier": "prettier '*.{js,css,scss,vue,md,ts}' --write --loglevel silent",
"publish": "np",
"tap": "tap",
"tsc": "tsc",
"pretest": "npm run build",
"test": "npm run lint && npm run unittest && npm run clean_cov && npm run format",
"unittest": "tap --no-only --reporter=terse && tsc -p tsconfig.json --noEmit && npm run clean_cov && npm run perf",
"clean_cov": "./leaveCoverageTotalOnly.js"
},
"tap": {
"check-coverage": false,
"coverage-report": [
"json-summary",
"text"
],
"node-arg": [
"--no-warnings"
],
"timeout": 0
},
"dependencies": {
"@babel/runtime": "^7.14.6",
"js-row-num": "^4.1.0",
"json-stringify-safe": "^5.0.1"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.7",
"@babel/plugin-external-helpers": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@babel/register": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.1",
"@rollup/plugin-node-resolve": "^13.0.1",
"@rollup/plugin-strip": "^2.0.1",
"@rollup/plugin-typescript": "^8.2.3",
"@types/node": "^16.3.2",
"@types/tap": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"core-js": "^3.15.2",
"cross-env": "^7.0.3",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"np": "^7.5.0",
"prettier": "^2.4.0",
"rollup": "^2.53.2",
"rollup-plugin-ascii": "^0.0.3",
"rollup-plugin-banner": "^0.2.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^3.0.1",
"rollup-plugin-terser": "^7.0.2",
"tap": "^14.11.0",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=12.22.1"
}
}