-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.76 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
{
"name": "postcss-selector-source",
"version": "0.2.0",
"description": "A PostCSS plugin for finding the original line and column position of your CSS selectors and declarations from your pre-processed SASS/SCSS/LESS/Stylus files",
"main": "dist/index.js",
"scripts": {
"test": "gulp",
"build": "gulp build",
"coverage": "gulp coverage",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/a-axton/postcss-selector-source.git"
},
"keywords": [
"postcss-plugin",
"postcss",
"source-maps",
"source-map",
"css",
"selectors",
"preprocessor",
"scss",
"sass",
"stylus",
"less"
],
"author": "Andy Axton",
"license": "MIT",
"bugs": {
"url": "https://github.com/a-axton/postcss-selector-source/issues"
},
"homepage": "https://github.com/a-axton/postcss-selector-source",
"devDependencies": {
"babel": "^4.3.0",
"chai": "^2.0.0",
"del": "^1.1.1",
"gulp": "^3.8.10",
"gulp-babel": "^4.0.0",
"gulp-istanbul": "^0.6.0",
"gulp-jscs": "^1.4.0",
"gulp-jshint": "^1.9.0",
"gulp-load-plugins": "^0.8.0",
"gulp-mocha": "^2.0.0",
"gulp-node-inspector": "0.0.4",
"gulp-nodemon": "^2.0.3",
"gulp-notify": "^2.1.0",
"gulp-plumber": "^0.6.6",
"isparta": "^2.0.0",
"jshint-stylish": "^1.0.0",
"less": "^2.5.1",
"mkdirp": "^0.5.0",
"mocha": "^2.1.0",
"node-sass": "^3.2.0",
"sinon": "^1.12.2",
"sinon-chai": "^2.7.0",
"stylus": "^0.52.0"
},
"nodeBoilerplateOptions": {
"mochaGlobals": [
"stub",
"spy",
"expect"
]
},
"dependencies": {
"postcss": "^5.0.6",
"scouter": "git://github.com/divshot/scouter.git#master",
"source-map": "^0.4.4"
}
}