-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.27 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.27 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "uinix-theme",
"version": "3.0.1",
"description": "Fully configurable framework-agnostic theme system (spec, theme, renderer, themed styles/keyframes/CSS variables) for building UIs. Your theme your rules 🤘.",
"license": "MIT",
"keywords": [
"uinix",
"theme",
"spec",
"design system",
"ui system",
"css"
],
"repository": "uinix-js/uinix-theme",
"bugs": "https://github.com/uinix-js/uinix-theme/issues",
"author": "Chris Zhou <chrisrzhou@pm.me> (https://chrisrzhou.io)",
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/uinix-js"
}
],
"sideEffects": false,
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"files": [
"lib/",
"index.js",
"index.d.ts"
],
"exports": "./index.js",
"dependencies": {
"fela": "^12.2.0",
"fela-dom": "^12.2.0",
"fela-enforce-longhands": "^12.2.0",
"fela-monolithic": "^12.2.0",
"fela-plugin-responsive-value": "^12.2.0",
"fela-preset-web": "^12.2.0",
"uinix-fp": "^1.1.0"
},
"devDependencies": {
"c8": "^7.12.0",
"rimraf": "^3.0.2",
"tap-spec": "^5.0.0",
"tape": "^5.6.1",
"type-coverage": "^2.22.0",
"typescript": "^4.8.2",
"xo": "^0.52.3"
},
"scripts": {
"build": "npm run clean && tsc && type-coverage",
"clean": "npm run clean:typings && npm run clean:typings",
"clean:typings": "rimraf index.d.ts {lib,test}/**/*.d.ts",
"lint": "xo --fix",
"test": "node test/index.js | tap-spec",
"test:coverage": "c8 --check-coverage --all --100 --reporter lcov npm test",
"test:ci": "npm run build && npm run lint && npm run test:coverage"
},
"prettier": {
"bracketSpacing": false,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"ignoreFiles": "test/*.js",
"strict": true
},
"xo": {
"esnext": false,
"prettier": true,
"rules": {
"unicorn/no-array-callback-reference": "off",
"unicorn/no-array-reduce": "off"
},
"overrides": [
{
"files": [
"test/**/*.js"
],
"rules": {
"import/no-unassigned-import": "off"
}
}
]
}
}