forked from adobe/spectrum-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 3.18 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
{
"private": true,
"name": "spectrum-css-monorepo",
"version": "0.0.0",
"license": "Apache-2.0",
"author": "Adobe",
"contributors": [
"Cassondra Roberts <[email protected]> (https://allons-y.llc)",
"Garth Braithwaite <[email protected]> (https://garthdb.com)",
"Larry Davis <[email protected]>",
"Patrick Fulton <[email protected]>",
"Steve Gill <[email protected]>"
],
"homepage": "https://opensource.adobe.com/spectrum-css/",
"repository": {
"type": "git",
"url": "https://github.com/adobe/spectrum-css.git"
},
"bugs": {
"url": "https://github.com/adobe/spectrum-css/issues"
},
"scripts": {
"build": "run-s build:site build:preview # preview cannot be built until the component assets are finished",
"build:clean": "run-s clean build",
"build:components": "lerna run --stream --scope \"@spectrum-css/*\" --ignore \"@spectrum-css/{*-builder*,preview,generator,site}\" build",
"build:preview": "yarn workspace @spectrum-css/preview build",
"postbuild:preview": "rimraf dist/preview && mv tools/preview/storybook-static dist/preview",
"build:site": "gulp -LL",
"check:peerDeps": "node ./tasks/checkPeerDependencies.js ./components",
"ci-all": "yarn build",
"clean": "gulp clean",
"dev": "NODE_ENV=development BROWSERSYNC_OPEN=true gulp dev",
"lint:components": "node ./tasks/packageLint.js",
"new": "yarn workspace @spectrum-css/generator new",
"precommit": "lint-staged",
"prepare": "husky install && gulp prepare",
"prerelease": "yarn version:build",
"release": "lerna publish",
"release:beta-from-package": "yarn release from-package --conventional-prerelease --preid beta --pre-dist-tag beta --no-private",
"release:site": "gulp prepareSite && gh-pages -d dist-site/ -f -e .",
"start": "NODE_ENV=development yarn workspace @spectrum-css/preview start",
"docs:mod": "node tasks/mod-extractor.js",
"test": "VRT=true run-p dev \"test:run {1}\" --",
"test:run": "yarn workspace @spectrum-css/test run test",
"version:build": "SCOPES=($(lerna changed)) && IFS=, SCOPE=\"${SCOPES[*]}\" && [[ \"${#SCOPES[@]}\" -gt 1 ]] && SCOPE=\"{${SCOPE}}\"; lerna run --stream --scope \"${SCOPE}\" --ignore \"@spectrum-css/{*-builder*,preview,generator,site}\" build",
"watch": "gulp watch"
},
"workspaces": [
"components/*",
"tools/*"
],
"devDependencies": {
"@adobe/focus-ring-polyfill": "^0.1.5",
"@commitlint/cli": "^8.3.3",
"@commitlint/config-conventional": "^8.3.3",
"del": "^5.1.0",
"gh-pages": "^3.0.0",
"gulp": "^4.0.0",
"gulp-replace": "^1.0.0",
"gulplog": "^1.0.0",
"husky": "^8.0.3",
"lerna": "^4.0.0",
"lint-staged": "^13.1.0",
"loadicons": "^1.0.0",
"lunr": "^2.3.6",
"markdown-it": "^12.3.2",
"npm-run-all": "^4.1.5",
"prettier-package-json": "^2.8.0",
"prismjs": "^1.23.0",
"rimraf": "^4.1.1",
"semver": "^7.3.8",
"through2": "^3.0.1",
"yargs": "^17.6.2"
},
"lint-staged": {
"components/*/package.json": [
"yarn lint:components",
"prettier-package-json --write"
],
"package.json": [
"prettier-package-json --write"
]
}
}