forked from ni/javascript-styleguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "@ni/eslint-config-angular",
"version": "7.0.0",
"description": "NI's Angular ESLint Shareable Config",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"pack": "npm pack",
"print-available-rules": "node tools/print-available-rules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ni/javascript-styleguide.git"
},
"keywords": [
"eslint",
"eslintconfig",
"ni"
],
"author": "National Instruments",
"license": "MIT",
"bugs": {
"url": "https://github.com/ni/javascript-styleguide/issues"
},
"homepage": "https://github.com/ni/javascript-styleguide#readme",
"publishConfig": {
"access": "public"
},
"files": [
"**/*.js",
"!/.*.js",
"!/tools"
],
"peerDependencies": {
"@angular-eslint/builder": "^16.3.1",
"@angular-eslint/eslint-plugin": "^16.3.1",
"@angular-eslint/eslint-plugin-template": "^16.3.1",
"@angular-eslint/schematics": "^16.3.1",
"@angular-eslint/template-parser": "^16.3.1",
"@ni/eslint-config-typescript": "^4.2.2"
}
}