-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.81 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.81 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
{
"name": "initial-css",
"version": "0.3.0",
"description": "CSS Framework",
"main": "index.scss",
"scripts": {
"prebuild": "npm-run-all test",
"build": "npm-run-all build:*",
"build:docs": "sassdoc stylesheets/ -d ./build",
"clean": "npm-run-all --parallel clean:*",
"clean:build": "rimraf ./build/",
"clean:testResults": "rimraf ./testResults/**/*.xml",
"clean:compilationTest": "rimraf ./testResults/**/*.css",
"compile:sass": "node-sass ./stylesheets --output-style --output ./testResults",
"fix:lint": "sass-lint-auto-fix",
"lint": "npm-run-all --parallel lint:*",
"lint:sass": "sass-lint \"./{stylesheets,tests}/**/*.scss\" --verbose --no-exit --format junit --output ./testReports/sassLint.xml",
"pretest": "npm-run-all clean lint",
"compile:tests": "node-sass --precision 10 --source-map true --output ./tests ./tests",
"test": "npm-run-all compile:sass",
"watch": "onchange \"./{stylesheets,tests}/**/*.scss\" -- npm run compile:tests",
"preversion": "git checkout master && git merge dev",
"version": "version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md",
"postversion": "git checkout dev && git merge master",
"start": "npm-run-all compile:tests watch"
},
"repository": {
"type": "git",
"url": "git+https://sobral@bitbucket.org/sobral/initial-css.git"
},
"keywords": [
"sass"
],
"author": "sobral <sobral@eokoe.com>",
"license": "MIT",
"devDependencies": {
"changelog-verify": "^1.1.0",
"csscomb": "^4.2.0",
"node-sass": "^4.9.0",
"npm-run-all": "^4.1.3",
"onchange": "^4.0.0",
"rimraf": "^2.6.2",
"sass-lint": "^1.12.1",
"sass-lint-auto-fix": "^0.15.0",
"sassdoc": "^2.5.0",
"sassdoc-theme-herman": "^3.0.0",
"version-changelog": "^3.1.0"
}
}