-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 2.49 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
{
"name": "@ni-private/nimble",
"version": "1.0.0",
"private": true,
"description": "The NI Nimble Design System Monorepo",
"scripts": {
"postinstall": "patch-package && npm run playwright-setup",
"playwright-setup": "playwright install --with-deps",
"build": "npm run build --workspaces --if-present",
"format": "npm run format --workspaces --if-present",
"pack": "npm run pack --workspaces --if-present",
"change": "beachball change",
"check": "beachball check --changehint \"Run 'npm run change' to generate a change file\"",
"sync": "beachball sync",
"invoke-publish": "cross-env-shell beachball publish --yes --access public --message \\\"applying package updates [skip ci]\\\" -n $NPM_SECRET_TOKEN",
"performance": "npm run performance --workspaces --if-present",
"validate": "concurrently --pad-prefix --timings --group \"npm:validate:*\"",
"validate:lint:sequential": "npm run lint --workspaces --if-present",
"validate:test:sequential": "npm run test --workspaces --if-present",
"validate:lint-concurrent:nimble-components": "npm run lint-concurrent -w packages/nimble-components",
"validate:test-concurrent:nimble-components": "npm run test-concurrent -w packages/nimble-components",
"test": "concurrently --pad-prefix --timings --group \"npm:validate:test*\"",
"lint": "concurrently --pad-prefix --timings --group \"npm:validate:lint*\"",
"storybook": "npm run start -w @ni-private/storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ni/nimble.git"
},
"author": {
"name": "National Instruments"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ni/nimble/issues"
},
"homepage": "https://github.com/ni/nimble#readme",
"files": [
"!*"
],
"workspaces": [
"packages/eslint-config-nimble",
"packages/jasmine-parameterized",
"packages/xliff-to-json-converter",
"packages/nimble-tokens",
"packages/nimble-components",
"packages/spright-components",
"packages/storybook",
"packages/angular-workspace",
"packages/angular-workspace/nimble-angular",
"packages/angular-workspace/spright-angular",
"packages/blazor-workspace",
"packages/blazor-workspace/NimbleBlazor",
"packages/blazor-workspace/SprightBlazor",
"packages/performance",
"packages/site"
],
"devDependencies": {
"beachball": "^2.45.0",
"concurrently": "^9.0.0",
"cross-env": "^7.0.3",
"patch-package": "^8.0.0",
"playwright": "1.44.0"
}
}