This repository has been archived by the owner on Dec 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
89 lines (89 loc) · 2.97 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "dress-code",
"version": "2.4.0",
"description": "The Dress Code is a framework agnostic, atomic design, BEM, style library which is designed for maintainability and modularity.",
"homepage": "https://zalando.github.io/dress-code",
"main": "dist/sass/dress-code.scss",
"scripts": {
"build": "gulp dist",
"start": "gulp",
"lint": "gulp lint",
"release": "npm --no-git-tag-version version $v",
"postversion": "npm run changelog",
"changelog": "gulp dist:changelog",
"postchangelog": "npm run build && git add .",
"postrelease": "npm run branch:release && npm run commit:release && npm run push:release",
"branch:release": "git checkout -b release/$npm_package_version",
"commit:release": "git commit -am \"chore(release): $npm_package_version\"",
"push:release": "git push origin release/$npm_package_version",
"postpublish": "npm run verify && npm run tag:release && npm run demo",
"verify": "npm view $npm_package_name version",
"tag:release": "git tag -a $npm_package_version -m \"$npm_package_version\" && git push origin $npm_package_version",
"demo": "npm run demo:build && npm run demo:deploy",
"demo:build": "gulp demo:build",
"demo:deploy": "gulp demo:deploy --demo-base-path=/dress-code",
"test": "node tests/runner.js",
"test:minified": "npm run test -- --minified",
"test:rebase": "npm run test -- --rebase",
"pretest": "npm run clean:tests && npm run build",
"clean:tests": "rimraf ./tests/screenshots/results && rimraf ./tests/screenshots/failures"
},
"keywords": [
"toolkit",
"styleguide",
"framework",
"scaffold",
"patterns",
"css library",
"BEM",
"atomic design"
],
"authors": [
"Thomas Nägele <[email protected]>",
"Ruben Barilani <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zalando/dress-code.git"
},
"engines": {
"node": ">=7.0.0"
},
"dependencies": {},
"devDependencies": {
"awesomplete": "^1.1.2",
"babel-core": "^6.26.0",
"babel-loader": "7.1.1",
"babel-preset-es2015": "^6.9.0",
"browser-sync": "^2.7.1",
"casperjs": "^1.1.4",
"express": "^4.16.2",
"fabricator-assemble": "^1.2.0",
"gulp": "^3.8.11",
"gulp-autoprefixer": "^4.0.0",
"gulp-consolidate": "^0.2.0",
"gulp-conventional-changelog": "^1.1.0",
"gulp-csso": "^3.0.0",
"gulp-debug": "^3.1.0",
"gulp-gh-pages": "^0.5.2",
"gulp-iconfont": "^9.0.2",
"gulp-imagemin": "^3.0.1",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.6.1",
"gulp-sass": "^3.1.0",
"gulp-sass-lint": "^1.3.2",
"gulp-sourcemaps": "^2.6.1",
"gulp-util": "^3.0.4",
"gulp-webpack": "^1.5.0",
"lodash": "^4.3.0",
"phantomcss": "^1.4.0",
"phantomjs-prebuilt": "^2.1.15",
"require-dir": "^0.3.0",
"rimraf": "^2.5.3",
"run-sequence": "^2.1.0",
"sassdoc": "^2.5.0",
"susy": "^3.0.0",
"webpack": "^3.5.5"
}
}