-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.28 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
{
"name": "postcss-quantity-queries",
"version": "0.5.0",
"description": "PostCSS plugin enabling quantity-queries",
"keywords": [
"css",
"quantity-queries",
"postcss",
"postcss-plugin"
],
"author": {
"name": "Pascal Duez",
"url": "https://github.com/pascalduez"
},
"homepage": "https://github.com/pascalduez/postcss-quantity-queries",
"bugs": "https://github.com/pascalduez/postcss-quantity-queries/issues",
"repository": {
"type": "git",
"url": "git://github.com/pascalduez/postcss-quantity-queries.git"
},
"license": "Unlicense",
"files": [
"dist",
"CHANGELOG.md",
"index.js",
"README.md",
"UNLICENSE"
],
"scripts": {
"test": "ava",
"coverage": "nyc npm test"
},
"ava": {
"files": "test/**/*.test.js",
"failWithoutAssertions": false
},
"dependencies": {
"balanced-match": "^0.4.2",
"postcss": "^6.0.0"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-preset-env": "^1.4.0",
"chai": "^3.5.0",
"coveralls": "^2.11.16",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-ava": "^4.0.1",
"eslint-plugin-import": "^2.2.0",
"nyc": "^10.1.2",
"opn-cli": "^3.0.1"
}
}