-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "sast",
"version": "0.8.1",
"description": "Parse CSS, Sass, and SCSS into Unist syntax trees",
"main": "index.js",
"bin": {
"sast-parse": "bin/sast-parse",
"sast-data": "bin/sast-data"
},
"scripts": {
"test": "ava --verbose test/*.js"
},
"keywords": [
"css",
"sass",
"sast",
"scss",
"syntax-tree",
"unist"
],
"repository": "github:shawnbot/sast",
"author": "Shawn Allen <shawn.allen@github.com>",
"license": "Unlicense",
"dependencies": {
"fs-extra": "^4.0.2",
"gonzales-pe": "^4.2.2",
"invariant": "^2.2.2",
"js-yaml": "^3.13.1",
"minimatch": "^3.0.4",
"unist-util-find": "^1.0.1",
"unist-util-inspect": "^4.1.1",
"unist-util-is": "^2.1.1",
"unist-util-map": "^1.0.3",
"unist-util-remove": "^1.0.0",
"unist-util-remove-position": "^1.1.1",
"unist-util-select": "^1.5.0",
"unist-util-visit": "^1.1.3",
"unist-util-visit-parents": "^1.1.1",
"yargs": "^9.0.1"
},
"devDependencies": {
"ava": "^1.4.1"
}
}