This repository was archived by the owner on Dec 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.29 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.29 KB
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
56
{
"name": "postcss-partial-import",
"version": "4.1.0",
"description": "Inline sugary @import statements in CSS",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"license": "CC0-1.0",
"repository": "jonathantneal/postcss-partial-import",
"homepage": "https://github.com/jonathantneal/postcss-partial-import#readme",
"bugs": "https://github.com/jonathantneal/postcss-partial-import/issues",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"scripts": {
"clean": "git clean -X -d -f",
"prepublish": "npm test",
"test": "echo 'Running tests...'; npm run test:js && npm run test:tape",
"test:js": "eslint *.js --cache --ignore-pattern .gitignore",
"test:tape": "postcss-tape"
},
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"glob": "^7.1.1",
"postcss-import": "^10.0.0"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-dev": "2.0.0",
"normalize-css": "^2.3.1",
"postcss": "^6.0.1",
"postcss-tape": "2.0.1",
"pre-commit": "^1.2.2"
},
"eslintConfig": {
"extends": "dev"
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"sugar",
"sass",
"scss",
"imports",
"styles",
"files",
"partials",
"modules",
"bower",
"node",
"npm"
]
}