-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 711 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 711 Bytes
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
{
"name": "preact-cli-plugin-atomizer",
"version": "1.0.1",
"description": "Use the atomic css atomizer with preact-cli",
"license": "MIT",
"repository": "vinspee/preact-cli-plugin-atomizer",
"author": {
"name": "Vince Speelman",
"email": "v@vinspee.me",
"url": "http://vinspee.me"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo && ava",
"prepublish": "yarn test"
},
"files": [
"index.js"
],
"keywords": [
"preact",
"preact-cli",
"plugin",
"atomic-css",
"atomic css",
"atomizer"
],
"dependencies": {
"webpack-atomizer-loader": "~0.4.0"
},
"devDependencies": {
"ava": "^0.20.0",
"xo": "^0.18.2"
},
"xo": {
"rules": {
"comma-dangle": 0
}
}
}