-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 934 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 934 Bytes
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
{
"name": "gulp-css-namespace",
"description": "Add a namespace to all CSS classes",
"version": "0.1.6",
"homepage": "https://github.com/JDRF/gulp-css-namespace",
"author": {
"name": "Nick Smith",
"email": "fuhton@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/JDRF/gulp-css-namespace.git"
},
"licenses": "MIT",
"keywords": [
"gulpplugin",
"namespace",
"css"
],
"files": [
"index.js"
],
"readmeFilename": "README.md",
"dependencies": {
"css-parse": "^2.0.0",
"css-stringify": "^2.0.0",
"deepmerge": "^0.2.10",
"through2": "^2.0.1",
"gulp-util": "^3.0.7"
},
"devDependencies": {
"clean-css": "^3.4.12",
"fs": "0.0.2",
"mocha": "^2.4.5",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"vinyl": "^1.1.1"
},
"scripts": {
"test": "node_modules/.bin/tape test/test.js | node_modules/.bin/tap-spec"
}
}