-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.49 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
{
"name": "stylish-preact",
"version": "0.2.0",
"description": "Lightweight extensible styles and themes for Preact apps.",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.mjs",
"exports": {
".": {
"import": "./lib/esm/index.mjs",
"require": "./lib/cjs/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/twuni/stylish-preact"
},
"author": {
"email": "devin@canterberry.cc",
"name": "Devin Canterberry"
},
"license": "MIT",
"scripts": {
"build": "sh scripts/build",
"lint": "sh scripts/lint",
"test": "sh scripts/test"
},
"peerDependencies": {
"htm": ">=3",
"preact": ">=10"
},
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.0",
"@babel/preset-env": "7.16.4",
"c8": "7.10.0",
"chai": "4.3.4",
"es-module-shims": "1.3.6",
"eslint": "8.4.1",
"eslint-plugin-ante": "1.1.0",
"jsdom": "19.0.0",
"mocha": "9.1.3",
"sinon": "12.0.1",
"sinon-chai": "3.7.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": "> 0.25%, not dead"
}
]
]
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:ante/recommended",
"plugin:ante/style"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"eslint-plugin-ante"
]
}
}