-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 897 Bytes
/
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
{
"name": "style-dictionary-format-json-schema",
"version": "1.0.2",
"description": "Generate JSON schemas for style-dictionary files to improve text editor support",
"main": "index.js",
"files": [
"index.js",
"schema.json"
],
"scripts": {
"test": "jest ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakobw/style-dictionary-format-json-schema.git"
},
"keywords": [
"style-dictionary",
"design-tokens",
"design-systems",
"build-tool"
],
"author": "Jakob Warkotsch <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/jakobw/style-dictionary-format-json-schema/issues"
},
"homepage": "https://github.com/jakobw/style-dictionary-format-json-schema#readme",
"devDependencies": {
"jest": "^26.6.1"
},
"peerDependencies": {
"style-dictionary": "2.x"
}
}