forked from cshaver/css-ast-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.14 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.14 KB
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
{
"name": "css-ast-diff",
"version": "1.1.2",
"description": "Diffs CSS files by parsing into AST, sorting, and finding functional differences",
"scripts": {
"test": "mocha --harmony"
},
"repository": {
"type": "git",
"url": "https://github.com/cshaver/css-ast-diff"
},
"keywords": [
"css",
"ast",
"diff",
"node",
"npm"
],
"author": "Cristina Shaver",
"license": "MIT",
"bugs": {
"url": "https://github.com/cshaver/css-ast-diff/issues/"
},
"homepage": "https://github.com/cshaver/css-ast-diff#readme",
"bin": {
"css-ast-diff": "./bin/css-ast-diff"
},
"main": "./lib/api.js",
"files": [
"LICENSE",
"README.md",
"bin",
"lib"
],
"dependencies": {
"async": "^1.5.2",
"colors": "^1.1.2",
"css": "^2.2.1",
"debug": "^2.2.0",
"diff": "^2.2.1",
"es6-object-assign": "^1.0.3",
"fs": "0.0.2",
"node-diff": "^0.2.0",
"nodegit": "^0.16.0",
"optionator": "^0.8.1",
"path": "^0.12.7",
"svn": "^0.2.0",
"svn-interface": "^0.5.0",
"util": "^0.10.3"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0"
}
}