-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
38 lines (38 loc) · 1.09 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": "@stratio/egeo-ui-base",
"version": "1.3.0",
"license": "Apache-2.0",
"description": "UI-Base project with utilites",
"scripts": {
"clean:dist": "rimraf main.css",
"test": "npm run test:sass && npm run test:postcss && npm run clean:dist",
"test:sass": "node-sass --include-path scss index.scss main.css",
"test:postcss": "postcss --use autoprefixer *.css -d .",
"replace": "json -I -f package.json -e",
"sass-lint": "sass-lint -c .sass-lint.yml ./settings/*.scss ./utils/*.scss -v -q",
"commit": "git-cz"
},
"author": "Stratio",
"repository": {
"type": "git",
"url": "https://github.com/Stratio/egeo-ui-base"
},
"devDependencies": {
"autoprefixer": "6.7.2",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.0.0",
"json": "9.0.4",
"node-sass": "4.5.0",
"postcss-cli": "2.6.0",
"rimraf": "2.5.4",
"sass-lint": "1.10.2"
},
"keywords": [
"sass"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}