-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 752 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 752 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
{
"name": "autoprefixer-stylus",
"description": "autoprefixer for stylus",
"version": "1.0.0",
"author": "Jeff Escalante",
"dependencies": {
"autoprefixer": "9.6.1",
"multi-stage-sourcemap": "0.3.1",
"postcss": "7.0.17"
},
"devDependencies": {
"chai": "4.2.0",
"coveralls": "3.0.5",
"css-parse": "2.0.0",
"mocha": "6.2.0",
"nyc": "^14.1.1",
"rimraf": "^2.6.3",
"stylus": "0.54.5"
},
"license": "MIT",
"main": "index.js",
"repository": "https://github.com/jescalan/autoprefixer-stylus",
"scripts": {
"coverage": "nyc report --reporter=html && open coverage/index.html",
"coveralls": "nyc report --reporter=text-lcov | coveralls && rimraf ./coverage",
"test": "nyc mocha"
}
}