forked from dennisreimann/uiengine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.35 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.35 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
{
"name": "@uiengine/core",
"description": "Create, document and evolve your design system collaboratively.",
"license": "MIT",
"version": "0.19.3",
"author": "Dennis Reimann <mail@dennisreimann.de> (https://dennisreimann.de)",
"homepage": "https://github.com/dennisreimann/uiengine",
"bugs": "https://github.com/dennisreimann/uiengine",
"repository": "dennisreimann/uiengine",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=8.9.0"
},
"main": "./lib/uiengine.js",
"bin": {
"uiengine": "./bin/uiengine.js"
},
"files": [
"bin",
"lib"
],
"keywords": [
"uiengine",
"uiengineering",
"components",
"design-system",
"pattern-library",
"style-guide",
"brand-manual",
"static-site"
],
"scripts": {
"start": "yarn run build -w",
"build": "rimraf lib && babel src --out-dir lib",
"lint": "eslint --ext .js src test"
},
"dependencies": {
"@uiengine/ui": "^0.19.3",
"chalk": "^2.4.1",
"cosmiconfig": "^4.0.0",
"fs-extra": "^6.0.0",
"globby": "^8.0.1",
"js-yaml": "^3.11.0",
"markdown-it": "^8.4.1",
"markdown-it-anchor": "^4.0.0",
"ramda": "^0.25.0",
"yargs": "^11.0.0"
},
"optionalDependencies": {
"browser-sync": "^2.24.4",
"chokidar": "^2.0.3"
},
"devDependencies": {
"babel-register": "^6.26.0"
}
}