-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "@igloo-ui/tokens",
"version": "2.1.0",
"description": "Igloo tokens are all the values needed to construct and maintain a design system — spacing, color, fonts, opacity, etc..",
"main": "dist/index.js",
"style": "dist/variables.css",
"sass": "dist/_variables.scss",
"type": "module",
"scripts": {
"build": "node ./build.js",
"clean": "rm -rf dist",
"lint": "eslint *.js",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "yarn build && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gsoft-inc/igloo-ui-tokens.git"
},
"keywords": [
"design tokens",
"igloo-ui"
],
"author": "Groupe Officevibe Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gsoft-inc/igloo-ui-tokens/issues"
},
"homepage": "https://github.com/gsoft-inc/igloo-ui-tokens#readme",
"devDependencies": {
"@babel/core": "^7.21.0",
"@changesets/cli": "^2.26.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"babel-loader": "^9.1.2",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"style-dictionary": "^3.7.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"camelcase": "^7.0.1"
}
}