-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1003 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1003 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
{
"name": "postcss-debug",
"version": "0.4.2",
"description": "PostCSS debugger",
"keywords": [ "postcss", "debug", "benchmark", "inspect" ],
"scripts": {
"build": "babel src --out-dir lib",
"precommit": "npm run build",
"prepush": "npm test",
"test": "standard src/"
},
"bin": "./lib/cli.js",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"author": "Andy Wermke <andy@dev.next-step-software.com>",
"contributors": [
"Sergey (https://github.com/Gaserd)"
],
"license": "MIT",
"homepage": "https://github.com/andywer/postcss-debug",
"bugs": {
"url": "https://github.com/andywer/postcss-debug/issues"
},
"dependencies": {
"midas": "^1.2.1",
"opener": "^1.4.1",
"postcss": "^5.0.19",
"yargs": "^4.7.1"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-register": "^6.7.2",
"husky": "^0.11.4",
"standard": "^6.0.8"
}
}