This repository has been archived by the owner on Jan 30, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 1.97 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "postcss-namespace",
"description": "PostCSS plugin that prefix a namespace to a selector",
"version": "1.1.1",
"author": {
"name": "nju33",
"email": "[email protected]",
"url": "http://nju33.work/"
},
"bugs": {
"url": "https://github.com/totora0155/postcss-namespace/issues"
},
"dependencies": {
"lodash": "^4.13.1",
"postcss": "^5.0.10"
},
"devDependencies": {
"ava": "^0.15.2",
"babel-core": "^6.7.4",
"babel-plugin-syntax-async-functions": "^6.5.0",
"babel-plugin-transform-async-to-generator": "^6.5.0",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.8.0",
"babel-plugin-transform-es2015-parameters": "^6.6.4",
"babel-plugin-transform-es2015-spread": "^6.8.0",
"babel-plugin-transform-function-bind": "^6.5.2",
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.6.4",
"babel-plugin-transform-remove-console": "^6.5.0",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-register": "^6.7.2",
"babel-runtime": "^6.5.0",
"babel-template": "^6.7.0",
"babel-types": "^6.7.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"xo": "^0.16.0"
},
"homepage": "https://github.com/totora0155/postcss-namespace#readme",
"keywords": [
"css",
"postcss",
"postcss-plugin"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:totora0155/postcss-namespace.git"
},
"scripts": {
"prepublish": "npm run build",
"build": "gulp babel",
"start": "gulp watch",
"test": "xo && ava"
},
"ava": {
"files": [
"test/**/*.js"
],
"require": [
"babel-register"
],
"babel": "inherit"
},
"xo": {
"env": [
"node"
],
"esnext": true,
"space": 2,
"ignores": [
"build/**"
]
}
}