-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "css-aliases",
"version": "1.1.10",
"description": "Lets you create custom aliases for CSS, less, SASS and etc. properties with an @alias rule",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/eslint .",
"patch": "npm version patch && git push origin master --follow-tags && npm publish",
"minor": "npm version minor && git push origin master --follow-tags && npm publish",
"major": "npm version major && git push origin master --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobinCK/css-aliases.git"
},
"author": "Igor Ognichenko <ognichenko.igor@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/RobinCK/css-aliases/issues"
},
"keywords": [
"aliases",
"style",
"css",
"less",
"sass",
"url",
"import"
],
"homepage": "https://github.com/RobinCK/css-aliases#readme",
"dependencies": {
"named-js-regexp": "^1.3.2",
"path": "^0.12.7"
},
"devDependencies": {
"eslint": "^3.19.0"
}
}