forked from accordproject/web-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 3.16 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@accordproject/web-components",
"version": "0.97.0",
"description": "Web components for Accord Project",
"main": "index.js",
"author": "accordproject.org",
"license": "Apache-2.0",
"devDependencies": {
"@clausehq/eslint-config": "^0.2.2",
"colors": "1.3.3",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-loopback": "^13.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.11.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2",
"lerna": "^3.22.1",
"lerna-changelog": "^1.0.1",
"license-check-and-add": "2.3.6",
"moment-mini": "2.22.1",
"semver": "6.2.0"
},
"dependencies": {
"react-dom": "^16.13.1",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.2",
"slate": "^0.58.4",
"slate-history": "^0.58.4",
"slate-react": "^0.58.4",
"styled-components": "^5.1.0"
},
"scripts": {
"storybook": "lerna exec --scope storybook -- npm run build-storybook",
"storybook:ci": "lerna exec --scope storybook -- npm run storybook:ci",
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap",
"licchk": "license-check-and-add",
"pretest": "npm run licchk",
"test:e2e": "lerna exec --scope storybook -- npm run ci:start-and-test-storybook",
"test": "exit 0",
"repoclean": "lerna clean",
"changelog:unreleased": "lerna-changelog"
},
"repository": {
"type": "git",
"url": "https://github.com/accordproject/web-components"
},
"changelog": {
"labels": {
"type: breaking change 💥": ":boom: Breaking Change",
"type: enhancement ✨": ":sparkles: Enhancement",
"type: bug 🐛": ":bug: Bug",
"type: chore 🧼": ":soap: Chore",
"type: documentation 📝": ":memo: Documentation"
}
},
"license-check-and-add-config": {
"folder": ".",
"license": "HEADER",
"exact_paths_method": "EXCLUDE",
"exact_paths": [
".git",
".github",
"node_modules",
"packages",
"softhsm",
"build.cfg",
"README.md",
"CONTRIBUTING.md",
"DEVELOPERS.md",
"NOTICES.md",
"CHARTER.md",
"LICENSE",
"HEADER",
"docs/",
"coverage",
".DS_Store"
],
"file_type_method": "EXCLUDE",
"file_types": [
".yml",
".log",
".enc",
".xmind",
".deb",
".vo",
".glob",
".aux",
".v.d",
".ctoj",
".depends",
".annot",
".byte",
".cmi",
".cmo",
".tem",
".txt",
".config",
".coq_modules"
],
"insert_license": false,
"license_formats": {
"js|ergo|cto": {
"prepend": "/*",
"append": " */",
"eachLine": {
"prepend": " * "
}
},
"v|atd|mll|mly": {
"prepend": "*",
"append": " *)",
"eachLine": {
"prepend": " * "
}
},
"gitattributes|cfg|ocp-indent": {
"eachLine": {
"prepend": "# "
}
},
"md": {
"file": "HEADER.md"
}
}
}
}