-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 835 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
{
"author": {
"name": "James Isbell"
},
"version": "1.0.2",
"name": "postcss-nth-list",
"dependencies": {
"postcss": "^5.0.14"
},
"description": "A work in progress postcss module for picking items from a 'varible list'.",
"devDependencies": {
"eslint": "^1.0.0",
"tape": "^4.0.0"
},
"files": [
"index.js"
],
"installable": true,
"keywords": [
"css",
"custom-properties",
"postcss",
"postcss-plugin",
"variables",
"vars",
"array",
"list",
"nth"
],
"repository": {
"type": "git",
"url": "git+https://github.com/7immy/postcss-nth-list.git"
},
"homepage": "https://github.com/7immy/postcss-nth-list",
"bugs": {
"url": "https://github.com/7immy/postcss-nth-list/issues"
},
"scripts": {
"test": "eslint . && tape test"
}
}