-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.21 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "csstree-scss-syntax",
"version": "1.0.0-alpha1",
"description": "SCSS syntax processor based on csstree",
"keywords": [
"scss",
"parser",
"ast"
],
"homepage": "https://github.com/csstree/csstree-scss-syntax",
"author": "Roman Dvornov <[email protected]> (https://github.com/lahmatiy)",
"license": "MIT",
"repository": "csstree/csstree-scss-syntax",
"bugs": {
"url": "https://github.com/csstree/csstree-scss-syntax/issues"
},
"main": "./lib/index",
"eslintConfig": {
"env": {
"node": true,
"mocha": true,
"es6": true
},
"rules": {
"no-duplicate-case": 2,
"no-undef": 2,
"no-unused-vars": [
2,
{
"vars": "all",
"args": "after-used"
}
]
}
},
"scripts": {
"update:docs": "node scripts/update-ast-docs.js",
"travis": "npm test",
"test": "mocha --reporter dot"
},
"dependencies": {
"css-tree": "^1.0.0-alpha19"
},
"devDependencies": {
"eslint": "^2.13.1",
"jscs": "~3.0.7",
"json-to-ast": "^1.2.15",
"mocha": "^3.0.2"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"lib",
"HISTORY.md",
"LICENSE",
"README.md"
]
}