forked from ElemeFE/element
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.98 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
{
"name": "element-react",
"version": "1.4.21",
"description": "Element UI for React",
"private": false,
"main": "dist/npm/es5/index.js",
"jsnext:main": "next.js",
"typings": "typings/index.d.ts",
"scripts": {
"start": "cd site && node run.js",
"typescript-test": "tsc --project typings/typing-tests",
"test": "flow check && BABEL_ENV=development jest",
"jest": "jest",
"lint": "eslint src libs site --quiet",
"build": "cd build/site && webpack --progress",
"prepubl¡sh": "./build/scripts/prepare.sh",
"postpublish": "./build/scripts/release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eleme/element-react.git"
},
"keywords": [
"Element",
"UI",
"React"
],
"author": "ELEME Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/eleme/element-react/issues"
},
"homepage": "https://github.com/eleme/element-react",
"devDependencies": {
"@types/react": "^15.6.7",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-runtime": "^6.26.0",
"babel-standalone": "^6.26.0",
"codemirror": "^5.37.0",
"core-js": "^2.5.6",
"css-loader": "^0.28.7",
"element-theme-default": "^1.4.13",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.1.0",
"eslint-plugin-react": "^7.8.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"flow-bin": "^0.51.1",
"html-webpack-plugin": "^2.30.1",
"jest": "^21.2.1",
"marked": "^0.3.6",
"mock-raf": "^1.0.0",
"node-sass": "^4.9.0",
"prismjs": "^1.8.4",
"raw-loader": "^0.5.1",
"react": "*",
"react-dom": "*",
"react-hot-loader": "^3.1.3",
"react-scroll-up": "^1.3.3",
"regenerator-runtime": "^0.11.0",
"sass-loader": "^6.0.5",
"sinon": "^4.0.2",
"style-loader": "^0.19.0",
"typescript": "^2.8.3",
"url-loader": "^0.6.2",
"webpack": "^3.12.0",
"webpack-dev-server": "^2.9.4"
},
"dependencies": {
"async-validator": "^1.8.1",
"classnames": "^2.2.5",
"prop-types": "^15.6.0",
"raf": "^3.4.0",
"react-click-outside": "^3.0.0",
"throttle-debounce": "^1.0.1"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"jest": {
"testRegex": "(/jest/.+\\.(js|jsx)$)|_test.jsx?$",
"testPathIgnorePatterns": [
"<rootDir>/tests",
"<rootDir>/dist"
],
"moduleNameMapper": {
"\\.(png|eot|svg|ttf|woff|woff2)(\\?.+)?$": "<rootDir>/tests/jest/mock.js",
"\\.(css|scss)$": "identity-obj-proxy"
},
"setupTestFrameworkScriptFile": "<rootDir>/tests/jest/config.js"
}
}