-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
56 lines (56 loc) · 1.98 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
{
"name": "@ni/javascript-styleguide",
"version": "1.0.0",
"private": true,
"description": "NI's styleguides for JavaScript, TypeScript, and Angular projects",
"scripts": {
"lint": "npm --workspaces --if-present run lint",
"pack": "npm --workspaces --if-present run pack",
"print-available-rules": "npm --workspaces --if-present run print-available-rules",
"print-evaluated-rules": "npm -w tests/print-evaluated-rules run print-evaluated-rules",
"print-evaluated-rules:diff": "npm -w tests/print-evaluated-rules run print-evaluated-rules:diff",
"print-evaluated-rules:no-audit": "npm -w tests/print-evaluated-rules run print-evaluated-rules:no-audit",
"test": "npm --workspaces --if-present test",
"change": "beachball change --verbose",
"check": "beachball check --verbose --changehint \"Run 'npm run change' to generate a change file\"",
"publish": "beachball publish --verbose --message \"applying package updates [skip ci]\"",
"publish:ci": "beachball publish --verbose --yes --access public --message \"applying package updates [skip ci]\""
},
"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",
"files": [
"!*"
],
"workspaces": [
"packages/eslint-config-javascript",
"packages/eslint-config-typescript",
"packages/eslint-config-angular",
"packages/eslint-config-playwright",
"tests/javascript",
"tests/typescript",
"tests/typescript-requiring-type-checking",
"tests/angular",
"tests/playwright",
"tests/playwright-requiring-type-checking",
"tests/print-evaluated-rules"
],
"devDependencies": {
"beachball": "^2.41.0"
},
"peerDependencies": {
"typescript": "~4.8.2"
}
}