-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathpackage.json
58 lines (58 loc) · 1.37 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
{
"name": "@weave-design/theme-context",
"version": "1.0.0",
"description": "ThemeContext components to ease adoption of theme data from React components",
"author": "Autodesk Inc.",
"license": "Apache-2.0",
"homepage": "https://storybook.weave.autodesk.com",
"repository": {
"type": "git",
"url": "https://github.com/Autodesk/hig.git"
},
"publishConfig": {
"access": "public"
},
"main": "build/index.js",
"module": "build/index.es.js",
"files": [
"build/*"
],
"dependencies": {
"prop-types": "^15.6.1"
},
"devDependencies": {
"@weave-design/babel-preset": "^1.0.0",
"@weave-design/eslint-config": "^1.0.0",
"@weave-design/jest-preset": "^1.0.0",
"@weave-design/scripts": "^1.0.0",
"@weave-design/semantic-release-config": "^1.0.0"
},
"peerDependencies": {
"@weave-design/theme-data": "^1.3.1",
"react": "^17.0.0 || ^18.0.0"
},
"scripts": {
"build": "weave-scripts-build",
"lint": "weave-scripts-lint",
"test": "weave-scripts-test",
"release": "weave-scripts-release"
},
"eslintConfig": {
"extends": "@weave-design"
},
"jest": {
"preset": "@weave-design/jest-preset"
},
"release": {
"extends": "@weave-design/semantic-release-config"
},
"babel": {
"env": {
"test": {
"presets": [
"@weave-design/babel-preset/test"
]
}
}
}
}