This repository has been archived by the owner on Sep 24, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.02 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "unified-ui",
"version": "0.0.3",
"description": "unified design system and component library",
"license": "MIT",
"keywords": [
"process",
"design",
"system",
"rehype",
"retext",
"remark"
],
"homepage": "http://unifiedjs.com",
"repository": "unifiedjs/design-system",
"bugs": "https://github.com/unifiedjs/design-system/issues",
"author": "John Otander <[email protected]> (http://johnotander.com)",
"contributors": [
"John Otander <[email protected]> (http://johnotander.com)",
"Titus Wormer <[email protected]> (https://wooorm.com)"
],
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"dependencies": {
"@mdx-js/tag": "^0.15.0",
"prop-types": "^15.6.2",
"styled-components": "^4.0.2",
"styled-system": "^3.1.11"
},
"devDependencies": {
"@compositor/kit": "^1.0.47",
"@compositor/x0": "^6.0.7",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint-config-xo-react": "^0.17.0",
"eslint-plugin-react": "^7.11.1",
"prettier": "^1.14.3",
"remark-cli": "^6.0.0",
"remark-preset-wooorm": "^4.0.0",
"xo": "^0.23.0"
},
"scripts": {
"build": "babel src -d dist",
"format": "remark . -qfo && prettier \"**/*.js\" --write && xo --fix",
"now-build": "x0 build docs",
"prepare": "rm -rf dist && npm run build",
"start": "x0 docs",
"test": "npm run format && npm run build"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"extends": [
"xo-react"
],
"parser": "babel-eslint",
"rules": {
"import/no-extraneous-dependencies": "off",
"unicorn/filename-case": "off"
}
},
"remarkConfig": {
"plugins": [
"preset-wooorm"
]
},
"x0": {
"title": "unified design system"
}
}