forked from RubyLouvre/anu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (101 loc) · 3.05 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
{
"name": "anujs",
"version": "1.4.0",
"description": "a React16-compact mini framework",
"main": "dist/React.js",
"scripts": {
"build": "rollup -c ./scripts/build/rollup.js && rollup -c ./scripts/build/rollup.ie.js ",
"test": "cross-env NODE_ENV=development jest --config ./scripts/jest/config.source.js",
"devtools": "rollup -c ./scripts/build/rollup.tools.js",
"webpack": "^1.14.0",
"sync": "node ./scripts/build/sync.js",
"sync2": "node ./scripts/build/shim.script.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RubyLouvre/anu.git"
},
"keywords": [
"react-like",
"react",
"jsx",
"vdom",
"virtual-dom",
"react-compat",
"performance",
"ie8"
],
"author": "RubyLouvre",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/RubyLouvre/anu/issues"
},
"homepage": "https://github.com/RubyLouvre/anu#readme",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-jest": "^22.4.3",
"babel-loader": "^6.2.10",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-syntax-async-generators": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx-source": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^5.8.38",
"chai": "^3.5.0",
"cross-env": "^5.1.4",
"es3ify-webpack-plugin": "0.0.1",
"eslint": "^4.2.0",
"eslint-plugin-react": "^7.1.0",
"fs-extra": "^4.0.2",
"husky": "^0.14.3",
"jasmine-check": "^1.0.0-rc.0",
"jest": "^22.4.3",
"karma": "^1.5",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-event-driver-ext": "0.0.12",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-spec-reporter": "0.0.30",
"karma-webpack": "^2.0.3",
"mocha": "^3.2.0",
"ora": "^1.3.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-cleanup": "^2.0.0",
"rollup-plugin-filesize": "^1.4.2",
"rollup-plugin-istanbul": "^1.1.0",
"rollup-plugin-license": "^0.4.0",
"rollup-plugin-re": "^1.0.6",
"selenium-standalone": "^6.12.0",
"semicolon-less": "^0.7.0",
"webpack": "^1.14.0"
},
"ghooks": {
"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 格式错误, \n请查看规范: http://wiki.corp.qunar.com/pages/viewpage.action?pageId=159698767"
}
}