-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
84 lines (84 loc) · 2.08 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
{
"name": "@design-systems/monorepo",
"private": true,
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Andrew Lisowski"
},
"scripts": {
"start": "tsc --build tsconfig.dev.json --watch",
"clean": "yarn clean:build && yarn clean:modules",
"clean:modules": "lerna clean --yes && rimraf node_modules",
"clean:build": "rimraf packages/*/dist && rimraf packages/*/tsconfig.tsbuildinfo && rimraf plugins/*/tsconfig.tsbuildinfo",
"build": "lerna run build --stream",
"lint": "./packages/cli/bin/ds.js lint",
"test": "./packages/cli/bin/ds.js test",
"create:plugin": "./scripts/create-plugin.js",
"create:package": "./packages/cli/bin/ds.js create package",
"format" : "prettier --write ."
},
"workspaces": [
"packages/*",
"plugins/*"
],
"prettier": {
"singleQuote": true
},
"repository": {
"type": "git",
"url": "https://github.com/intuit/design-systems-cli.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"devDependencies": {
"@auto-it/all-contributors": "10.36.5",
"@auto-it/first-time-contributor": "10.36.5",
"@auto-it/released": "10.36.5",
"auto": "10.36.5",
"change-case": "4.1.1",
"copy-template-dir": "1.4.0",
"lerna": "4.0.0",
"prettier": "2.1.2",
"rimraf": "3.0.2",
"signale": "1.4.0",
"typescript": "4.2.2"
},
"auto": {
"plugins": [
"npm",
"released",
"first-time-contributor",
[
"all-contributors",
{
"types": {
"plugin": "**/plugin/**/*",
"code": [
"**/src/**/*",
"**/package.json",
"**/tsconfig.json"
]
}
}
]
],
"labels": [
{
"name": "dependency-update",
"changelogTitle": "🔩 Dependency Updates",
"releaseType": "none"
},
{
"name": "blog-post",
"changelogTitle": "📚 Blog Post",
"releaseType": "none"
}
]
},
"engines": {
"node": ">=10.18.1"
}
}