-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.59 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": "uinix-theme-spec",
"version": "1.1.0",
"description": "The default uinix theme spec.",
"license": "MIT",
"keywords": [
"uinix",
"theme",
"spec"
],
"repository": "uinix-js/uinix-theme-spec",
"bugs": "https://github.com/uinix-js/uinix-theme-spec/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": [
"index.js",
"index.d.ts"
],
"exports": "./index.js",
"devDependencies": {
"c8": "^7.11.3",
"rimraf": "^3.0.2",
"type-coverage": "^2.21.1",
"typescript": "^4.7.4",
"xo": "^0.50.0"
},
"scripts": {
"build": "npm run clean && tsc && type-coverage",
"clean": "rimraf *.d.ts",
"lint": "xo --fix",
"test-coverage": "c8 --check-coverage --all --100 --reporter lcov node --test test/index.js",
"test": "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,
"suppressError": true
},
"xo": {
"esnext": false,
"prettier": true,
"overrides": [
{
"files": [
"test/**/*.js"
],
"rules": {
"import/no-unassigned-import": "off"
}
}
]
}
}