forked from carbon-design-system/devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 KB
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
{
"name": "@carbon/devtools-utilities",
"version": "2.8.4",
"description": "Common utilities and functions used across throughout Carbon Devtools.",
"main": "index.js",
"scripts": {
"format": "prettier --write '*.{js,json,md,scss,ts}' '**/*.{js,json,md,scss,ts}' '!**/{dist,build,es,lib,storybook,ts,umd}/**' '!**/*.{jpg,jpeg,gif,png}'",
"format:diff": "prettier --list-different '*.{js,json,md,scss,ts}' '**/*.{js,json,md,scss,ts}' '!**/{dist,build,es,lib,storybook,ts,umd}/**' '!**/*.{jpg,jpeg,gif,png}'",
"lint": "yarn lint:js",
"lint:js": "eslint src/",
"test": "yarn format && yarn lint"
},
"keywords": [
"Carbon",
"IBM",
"Devtools",
"Development",
"Tools",
"Tokens",
"Utilities",
"Functions"
],
"license": "Apache-2.0",
"author": "IBM",
"repository": {
"type": "git",
"url": "https://github.com/carbon-design-system/devtools"
},
"bugs": {
"url": "https://github.com/carbon-design-system/devtools/issues/new",
"email": "carbon@us.ibm.com"
},
"homepage": "https://github.com/carbon-design-system/devtools#readme",
"dependencies": {
"@carbon/layout": "^10.37.5"
},
"devDependencies": {
"eslint": "^9.9.0",
"eslint-config-carbon": "^3.18.0",
"prettier": "^2.8.8",
"prettier-config-carbon": "^0.11.0"
},
"eslintConfig": {
"extends": [
"carbon"
],
"globals": {
"chrome": "readonly"
}
}
}