forked from gatsbyjs/gatsby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "gatsby-plugin-stylus",
"description": "Gatsby support for Stylus",
"version": "1.1.16",
"author": "Ian Sinnott <ian@iansinnott.com>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"extract-text-webpack-plugin": "^1.0.1",
"gatsby-1-config-css-modules": "^1.0.10",
"stylus": "^0.54.5",
"stylus-loader": "webpack1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"cross-env": "^5.0.5"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-stylus#readme",
"keywords": [
"gatsby",
"gatsby-plugin",
"stylus"
],
"license": "MIT",
"main": "./gatsby-node.js",
"peerDependencies": {
"gatsby": "^1.0.0"
},
"readme": "README.md",
"repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-stylus",
"scripts": {
"build": "babel src --out-dir . --ignore __tests__",
"prepublish": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore __tests__"
}
}