-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
110 lines (110 loc) · 3.67 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
108
109
110
{
"name": "stricter",
"version": "0.5.0",
"description": "A project-wide js-linting tool",
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"lib/**/!(*.test.d.ts|test.d.ts)",
"bin"
],
"main": "./lib/index.js",
"module": "./lib/index.es.js",
"bin": {
"stricter": "./bin/cli.js"
},
"scripts": {
"build:main": "cross-env NODE_ENV=production rollup -c rollup.config.js",
"watch": "rollup -c rollup.config.js -w",
"lint": "eslint . --ext .js,.ts --cache",
"stricter": "stricter",
"typecheck": "tsc --noEmit",
"build:types": "tsc --emitDeclarationOnly --declarationDir lib --declaration",
"generate:schema": "typescript-json-schema tsconfig.json Config --include src/types/* --out src/config/config-schema.json --noExtraProps --required",
"all": "yarn generate:schema && concurrently npm:build:main npm:build:types npm:lint npm:typecheck npm:stricter -c green,yellow,blue,magenta,cyan",
"test": "jest",
"report-coverage": "coveralls < coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stricter/stricter.git"
},
"keywords": [
"lint",
"project"
],
"author": "Li0liQ",
"license": "MIT",
"bugs": {
"url": "https://github.com/stricter/stricter/issues"
},
"homepage": "https://github.com/stricter/stricter#readme",
"devDependencies": {
"@babel/preset-env": "7.13.12",
"@babel/preset-typescript": "7.13.0",
"@types/app-root-path": "1.2.4",
"@types/babel-types": "7.0.9",
"@types/babel__core": "7.1.14",
"@types/babel__generator": "7.6.2",
"@types/babel__template": "7.4.0",
"@types/babel__traverse": "7.11.1",
"@types/debug": "4.1.5",
"@types/graphlib": "2.1.7",
"@types/jest": "26.0.22",
"@types/micromatch": "4.0.1",
"@types/node": "14.14.37",
"@types/rimraf": "3.0.0",
"@types/wrap-ansi": "3.0.0",
"@types/xxhashjs": "0.2.2",
"@types/yargs": "16.0.1",
"@typescript-eslint/eslint-plugin": "4.21.0",
"@typescript-eslint/parser": "4.21.0",
"babel-core": "7.0.0-bridge.0",
"concurrently": "6.0.1",
"coveralls": "3.1.0",
"cross-env": "7.0.3",
"eslint": "7.23.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-jest": "24.3.4",
"eslint-plugin-prettier": "3.3.1",
"jest": "26.6.3",
"jest-circus": "26.6.3",
"prettier": "2.2.1",
"rollup": "2.44.0",
"rollup-plugin-auto-external": "2.0.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"stricter": "0.4.7",
"ts-node": "9.1.1",
"typescript": "4.2.3",
"typescript-json-schema": "0.50.0"
},
"dependencies": {
"@babel/core": "^7.13.14",
"@babel/parser": "^7.13.13",
"@wojtekmaj/babylon-walk": "2.0.0",
"ajv": "^8.0.5",
"ansi-colors": "^4.1.1",
"app-root-path": "^3.0.0",
"debug": "^4.3.1",
"enhanced-resolve": "^5.7.0",
"fast-glob": "^3.2.5",
"file-system-cache": "^1.0.5",
"find-cache-dir": "^3.3.0",
"graphlib": "^2.1.8",
"graphlib-dot": "^0.6.4",
"is-ci": "^3.0.0",
"micromatch": "^4.0.2",
"rimraf": "^3.0.2",
"wrap-ansi": "^7.0.0",
"xml-escape": "^1.1.0",
"xxhashjs": "^0.2.2",
"yargs": "^16.2.0"
},
"engines": {
"node": ">=10"
}
}