forked from ni/javascript-styleguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.6 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
{
"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 --workspaces --if-present run print-evaluated-rules",
"test": "npm --workspaces --if-present test",
"change": "beachball change",
"check": "beachball check --changehint \"Run 'npm run change' to generate a change file\"",
"publish": "beachball publish --message \"applying package updates [skip ci]\"",
"publish:ci": "beachball publish --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",
"tests/javascript",
"tests/typescript",
"tests/typescript-requiring-type-checking",
"tests/angular",
"tests/print-evaluated-rules"
],
"devDependencies": {
"@ni/beachball-lock-update": "^1.0.1",
"beachball": "^2.21.0"
}
}