-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
110 lines (110 loc) · 2.89 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "ykit",
"version": "2.3.3-rc",
"description": "现代 JavaScript 应用构建工具",
"bin": {
"ykit": "bin/ykit"
},
"engines": {
"node": ">=4.3.0 <5.0.0 || >=5.10"
},
"scripts": {
"lint": "eslint src",
"commitmsg": "node static/tasks/validate-commit-msg.js",
"test": "mocha --recursive --timeout 0",
"testlocal": "env ENV=local mocha --recursive --timeout 0",
"start": "cd .. && sudo node ykit/bin/ykit server",
"doc": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && ydoc build && node static/tasks/post-process-doc.js"
},
"license": "MIT",
"dependencies": {
"async": "^1.5.2",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"case-sensitive-paths-webpack-plugin": "^2.1.1",
"cli-cursor": "^2.1.0",
"cli-spinners": "^1.0.0",
"colors": "^1.1.2",
"compute-cluster": "0.0.9",
"connect": "^3.4.1",
"css-loader": "^0.28.4",
"extend": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"fs-extra": "^1.0.0",
"globby": "^5.0.0",
"happypack": "^4.0.0",
"json-loader": "^0.5.4",
"json5": "^0.5.0",
"left-pad": "^1.1.3",
"loader-utils": "^0.2.15",
"log-symbols": "^2.0.0",
"mkdirp": "^0.5.1",
"moment": "^2.14.1",
"node-fs-extra": "^0.8.2",
"optimist": "^0.6.1",
"replacestream": "^4.0.0",
"requireg": "^0.1.5",
"right-pad": "^1.0.1",
"semver": "^5.3.0",
"serve-favicon": "^2.4.2",
"serve-index": "^1.8.0",
"serve-static": "^1.12.4",
"shelljs": "^0.7.8",
"style-loader": "^0.13.1",
"uglify-js": "^3.1.9",
"uglifycss": "0.0.25",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.8.1",
"webpack-bundle-analyzer": "^2.9.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.17.0"
},
"repository": {
"type": "https",
"url": "https://github.com/YMFE/ykit.git"
},
"devDependencies": {
"babel-eslint": "6",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-runtime": "^6.23.0",
"chai": "^3.5.0",
"conventional-changelog-cli": "^1.2.0",
"debug": "^2.6.0",
"eslint": "^4.4.1",
"findup": "^0.1.5",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-watch": "^4.3.8",
"husky": "^0.14.3",
"mocha": "^3.1.2",
"pre-commit": "^1.2.2",
"ps-tree": "^1.1.0",
"semver-regex": "^1.0.0"
},
"pre-commit": [
"lint"
],
"config": {
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert"
],
"warnOnFail": false,
"maxSubjectLength": 100,
"subjectPattern": ".+",
"subjectPatternErrorMsg": "subject does not match subject pattern!",
"helpMessage": ""
}
}
}