This repository has been archived by the owner on Mar 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2 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
{
"name": "hubble-scripts",
"description": "Scripts repository to export design data like colors, fonts & text, and map them to design tokens.",
"version": "4.5.1",
"homepage": "https://hubble.inthepocket.design",
"repository": "inthepocket/hubble-scripts",
"author": "In The Pocket",
"maintainers": [
"Thibault Maekelbergh <[email protected]>"
],
"license": "MIT",
"keywords": [
"hubble",
"hubble-scripts",
"hubble-oss",
"hubble-design-system",
"inthepocket"
],
"compileForNode": "10",
"engines": {
"node": ">=10.0",
"bash": ">=4"
},
"bin": {
"hubble-cli": "./cli.js"
},
"scripts": {
"start": "node cli.js",
"start:document": "npm start -- --dump",
"start:artboards": "npm start -- --dump --useColorArtboards --useGradientArtboards",
"start:styledictionary": "npm start -- --dump --useColorArtboards --useGradientArtboards --useStyleDictionaryOutput",
"clean": "rm hubble-data.json && rm -rf sketchtool-export node_modules && npm install",
"export": "./sketchtool.sh ./__mocks__/sketch/sample_sketchfile.sketch",
"format": "itp-react-scripts format \"**/*.js\"",
"lint": "itp-react-scripts lint \"**/*.js\"",
"lint:fix": "npm run lint -- --fix",
"lint:shell": "which shellcheck > /dev/null && shellcheck *.sh",
"test": "jest",
"test:watch": "jest --watch",
"test:update": "npm run test -- --updateSnapshot",
"build": "./Taskfile build_artifacts"
},
"devDependencies": {
"@inthepocket/itp-react-scripts": "^0.48.1",
"eslint": "^5.13.0",
"husky": "^3.0.4",
"jest": "^23.6.0",
"lint-staged": "^8.2.1",
"pkg": "^4.4.0"
},
"dependencies": {
"camelcase": "^5.0.0",
"color-convert": "^1.9.3",
"color-namer": "^1.3.0",
"figma-js": "^1.7.0",
"meow": "^5.0.0",
"rimraf": "^3.0.2",
"sketch2json": "^0.1.2",
"unzipper": "^0.10.10"
},
"lint-staged": {
"**/*.js": [
"npm run lint:fix"
],
"**/*.sh": [
"npm run lint:shell"
]
}
}