-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.06 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
{
"name": "bem-tools",
"main": "./lib/bem-tools",
"version": "0.1.15",
"description": "Create BEM HTML, CSS and JSON faster",
"keywords": [
"bem",
"bemjson",
"html",
"css",
"sass",
"scss"
],
"activationCommands": {
"atom-workspace": [
"bem-tools:run",
"bem-tools:to-json",
"bem-tools:to-css",
"bem-tools:to-scss"
]
},
"configSchema": {
"modPrefix": {
"title": "Mod prefix",
"description": "Usually it is -- or _",
"type": "string",
"default": "--",
"order": 1
},
"scssTabs": {
"title": "Tab size for SCSS nested classes",
"description": "Default value is two spaces. You can use `\\t` for tabs.",
"type": "string",
"default": " ",
"order": 2
}
},
"repository": "https://github.com/pvoznyuk/atom-bem-tools",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"bem-json-to-html": "^0.3.1",
"bemjson-to-scss": "^0.1.4",
"html2bemjson": "^1.10.0",
"prettify-html": "0.0.2"
}
}