forked from deser/postcss-selector-namespace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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-selector-namespace",
"version": "1.4.1",
"description": "A postcss plugin to prefix each rule with a specific selector",
"babel": {
"presets": [
"es2015"
]
},
"main": "dist/plugin.js",
"directories": {
"test": "tests"
},
"scripts": {
"prepublish": "babel lib --out-dir dist",
"test": "babel-node node_modules/babel-istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- tests/test.js",
"lint": "eslint lib/* tests/*"
},
"repository": {
"type": "git",
"url": "https://github.com/topaxi/postcss-selector-namespace"
},
"engines": {
"node": ">= 0.10.0"
},
"author": "Damian Senn <damian.senn@topaxi.codes>",
"license": "MIT",
"keywords": [
"postcss",
"postcss-addon",
"css",
"selector",
"prefix",
"namespace"
],
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-istanbul": "^0.12.2",
"babel-preset-es2015": "^6.24.0",
"babel-register": "^6.24.0",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"mocha": "^3.2.0",
"postcss-scss": "^0.4.1"
},
"dependencies": {
"postcss": "^5.2.15",
"postcss-selector-parser": "^2.2.3"
}
}