forked from evolution-ui/evolution-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.99 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
{
"name": "evolution-ui",
"version": "0.0.0-semantic-release",
"description": "A playground for the new Evolution UI directory structure and workflow.",
"main": "dist/evolution-ui.js",
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"scripts": {
"commit": "git-cz",
"start": "gulp serve",
"production": "gulp serve --production",
"build": "gulp build",
"lint": "gulp scripts:lint",
"test": "npm run lint",
"release": "semantic-release pre && npm publish --access public && semantic-release post",
"docs": "gulp serve --docs",
"docs:deploy": "gulp deploy --docsDeploy"
},
"author": "",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.24.1",
"browser-sync": "^2.18.8",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-changed": "^3.0.0",
"gulp-concat": "^2.6.1",
"gulp-cssmin": "^0.1.7",
"gulp-eslint": "^3.0.1",
"gulp-flatten": "^0.3.1",
"gulp-front-matter": "^1.3.0",
"gulp-gh-pages": "^0.5.4",
"gulp-imagemin": "^3.2.0",
"gulp-insert": "^0.5.0",
"gulp-load-plugins": "^1.5.0",
"gulp-postcss": "^6.4.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-shell": "^0.6.3",
"gulp-uglify": "^2.1.2",
"gulp-util": "^3.0.8",
"gulp-watch": "^4.3.11",
"husky": "^0.13.3",
"run-sequence": "^1.2.2",
"semantic-release": "^6.3.2",
"validate-commit-message": "^3.0.1",
"webpack": "^2.4.1",
"webpack-stream": "^3.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/evolution-ui/evolution-ui.git"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run test",
"pre-push": "npm run test",
"commit-msg": "validate-commit-msg"
}
}
}