-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "postcss-filename-prefix",
"version": "2.0.0",
"description": "Postcss plugin for prefixing classes with corresponding filenames",
"keywords": [
"css",
"postcss",
"postcss-plugin"
],
"main": "lib/index.js",
"scripts": {
"prepublish": "babel --optional runtime src --out-dir lib",
"postpublish": "rm -rf lib",
"lint": "standard | snazzy",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Vladimir Makhaev",
"license": "MIT",
"repository": "vmakhaev/postcss-filename-prefix",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.21",
"babel-eslint": "^5.0.0-beta6",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.3.19",
"snazzy": "^2.0.1",
"standard": "^5.4.1"
},
"peerDependencies": {
"postcss": ">= 5.0.0"
},
"standard": {
"globals": [
"assert",
"describe",
"it",
"before",
"beforeEach",
"after",
"afterEach"
],
"parser": "babel-eslint"
}
}