-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
96 lines (96 loc) · 2.62 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
{
"name": "yo3",
"version": "3.1.0",
"description": "一个专注于移动开发的前端框架",
"compiler": "node-sass",
"dependencies": {
"babel-polyfill": "^6.9.1",
"classnames": "^2.2.5",
"copy-dir": "^0.3.0",
"lodash": "^4.16.4",
"normalize-path": "^2.0.1",
"prop-types": "^15.6.0",
"raf": "^3.4.0",
"react": "^16.2.0",
"react-addons-css-transition-group": "^15.3.1",
"react-addons-pure-render-mixin": "^15.3.1",
"react-addons-shallow-compare": "^15.3.1",
"react-dom": "^16.2.0",
"react-tap-event-plugin": "^3.0.2"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-eslint": "^7.0.0",
"babel-jest": "^19.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"classnames": "^2.2.5",
"css-loader": "^0.23.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.2.2",
"ghooks": "^1.3.2",
"gulp": "3.9.0",
"gulp-connect": "^4.0.0",
"gulp-plumber": "1.0.1",
"gulp-ruby-sass": "^2.0.6",
"gulp-sass-china": "2.3.1",
"gulp-util": "3.0.6",
"immutable": "^3.8.1",
"jest": "^21.2.1",
"node-notifier": "4.2.3",
"node-sass": "3.8.0",
"node-sass-import-once": "^1.2.0",
"optimist": "^0.6.1",
"react-addons-test-utils": "^15.4.2",
"regenerator-runtime": "^0.10.3",
"rmdir-recursive": "0.0.1",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"through2": "2.0.0",
"validate-commit-msg": "^2.12.2",
"webpack": "^1.13.1"
},
"scripts": {
"start": "cd .. && sudo ykit server",
"lint": "ykit lint -d ./component",
"postinstall": "node builder/postinstall",
"prepublish": "jest && node builder",
"test": "jest"
},
"repository": "https://github.com/doyoe/Yo",
"license": "MIT",
"config": {
"ghooks": {
"pre-commit": "jest",
"commit-msg": "validate-commit-msg"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"test",
"chore",
"refactor",
"opti"
],
"warnOnFail": false,
"maxSubjectLength": 100,
"subjectPattern": ".+",
"subjectPatternErrorMsg": "请输入message信息!",
"helpMessage": "Commit message 格式错误"
}
},
"jest": {
"verbose": true,
"testRegex": "(/__tests__/.*\\.(test|spec))\\.jsx?$",
"setupTestFrameworkScriptFile": "./jest.setup.js"
}
}