forked from sindresorhus/atom-autoprefixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 804 Bytes
/
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
{
"name": "autoprefixer",
"version": "4.1.0",
"description": "Prefix CSS and SCSS",
"license": "MIT",
"repository": "sindresorhus/atom-autoprefixer",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"private": true,
"engines": {
"atom": ">=1.36.0"
},
"scripts": {
"test": "xo"
},
"keywords": [
"css",
"scss",
"prefix",
"prefixer"
],
"dependencies": {
"autoprefixer": "^9.5.1",
"postcss": "^7.0.16",
"postcss-safe-parser": "^4.0.1",
"postcss-scss": "^2.0.0",
"postcss-unprefix": "^2.1.4"
},
"devDependencies": {
"xo": "^0.24.0"
},
"activationCommands": {
"atom-workspace": [
"core:save",
"autoprefixer:prefix",
"autoprefixer:remove-prefixes"
]
},
"xo": {
"globals": [
"atom"
]
}
}