-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.41 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.41 KB
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
{
"name": "create-design-system-cli",
"description": "A CLI to set up a design system including documentation, testing and linting",
"version": "0.0.1-alpha.23",
"bin": {
"create-design-system-cli": "bin/design-system"
},
"scripts": {
"clean": "rm -rf ./tmp",
"test": "ts-node src/test/docz-test.ts",
"test:storybook": "ts-node src/test/storybook-test.ts",
"lint": "eclint fix \"./!(node_modules|tmp)/**/*\""
},
"publishConfig": {
"access": "public"
},
"author": {
"email": "p.m.c.sevat@gmail.com",
"name": "Patrick Sevat"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^12.7.1"
},
"keywords": [
"CLI",
"design system",
"stencil",
"docz"
],
"homepage": "https://github.com/patricksevat/create-design-system",
"husky": {
"hooks": {
"pre-commit": "yarn lint && git add ./"
}
},
"dependencies": {
"ansi-colors": "^4.1.1",
"change-case": "^3.1.0",
"ejs": "^2.6.2",
"enquirer": "^2.3.1",
"fs-extra": "^8.1.0",
"husky": "^3.0.5",
"eclint": "^2.8.1",
"mkdirp-promise": "^5.0.1",
"glob-promise": "^3.4.0",
"glob": "^7.1.4",
"ora": "^3.4.0",
"ts-node": "^8.3.0",
"yargs": "^13.3.0",
"typescript": "3.5.3"
},
"repository": {
"type": "git",
"url": "https://github.com/patricksevat/create-design-system"
},
"files": [
"/tsconfig.json",
"bin/",
"src/"
]
}