-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.16 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
{
"name": "postcss-only-directive",
"version": "0.1.0",
"description": "PostCSS plugin Allows you to easily create entrypoint files which contain only certain rules.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"media-query",
"splitting",
"target",
"only"
],
"scripts": {
"publish": "pack publish",
"build": "pack build",
"test": "jest",
"version": "npm run build"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg"
],
[
"@pika/plugin-build-node"
]
]
},
"author": "Michael Wheeler <mwheeler@g2crowd.com>",
"license": "MIT",
"repository": "wheeyls/postcss-only-directive",
"bugs": {
"url": "https://github.com/wheeyls/postcss-only-directive/issues"
},
"homepage": "https://github.com/wheeyls/postcss-only-directive",
"dependencies": {
"postcss": "^7.0.6"
},
"pika": true,
"devDependencies": {
"@pika/plugin-build-node": "^0.5.1",
"@pika/plugin-standard-pkg": "^0.5.1",
"@pika/types": "^0.5.1",
"jest": "^24.8.0",
"npm": "^6.10.2",
"prettier": "^1.18.2"
},
"jest": {
"testEnvironment": "node"
}
}