forked from bem/themekit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.11 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
{
"name": "@yandex/themekit",
"version": "1.6.5",
"author": "Eugene Tropin <[email protected]>",
"description": "Build system of design-tokens for any platforms.",
"keywords": ["themekit", "design", "css", "tokens", "style", "style-dictionary"],
"license": "MPL-2.0",
"repository": "https://github.com/bem/themekit",
"homepage": "https://github.com/bem/themekit",
"bugs": {
"url": "https://github.com/bem/themekit/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"bin": {
"themekit": "bin/themekit"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build:manifest": "oclif-dev manifest",
"build": "tsc",
"cleanup": "rm -rf lib",
"dev": "tsc -w",
"format:js": "prettier --write src/**/*.ts",
"lint:js": "eslint --ext .ts,.js .",
"prepare": "npm run build:manifest",
"prepublishOnly": "npm run cleanup && npm run build",
"unit": "jest --passWithNoTests",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"dependencies": {
"@babel/code-frame": "7.10.4",
"@oclif/command": "1.5.19",
"chalk": "4.1.0",
"chokidar": "3.4.0",
"css-color-function": "1.3.3",
"deepmerge": "4.2.2",
"fast-glob": "3.2.2",
"fs-extra": "8.1.0",
"normalize-path": "3.0.0",
"read-pkg-up": "7.0.1",
"style-dictionary": "2.10.0",
"yaml": "1.10.0"
},
"devDependencies": {
"@commitlint/cli": "9.1.2",
"@commitlint/config-conventional": "9.1.2",
"@oclif/dev-cli": "1.22.2",
"@types/babel__code-frame": "7.0.2",
"@types/fs-extra": "8.1.0",
"@types/jest": "25.2.1",
"@typescript-eslint/eslint-plugin": "2.31.0",
"@typescript-eslint/parser": "2.34.0",
"conventional-changelog-cli": "2.1.0",
"eslint": "6.8.0",
"husky": "4.2.5",
"jest": "26.6.3",
"lint-staged": "10.2.11",
"prettier": "1.19.1",
"ts-jest": "26.4.4",
"ts-node": "8.10.2",
"typescript": "3.8.3"
},
"oclif": {
"commands": "lib/cli",
"bin": "themekit"
},
"files": ["bin", "lib", "oclif.manifest.json"]
}