forked from tvarsis/searchtabular-antd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.47 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
{
"name": "searchtabular-antd",
"version": "4.1.8",
"description": "Search utilities",
"main": "dist",
"scripts": {
"test:all": "npm run test:lint && npm test",
"test": "jest --",
"test:coverage": "jest --coverage --",
"test:lint": "eslint . --ext .js --cache",
"test:watch": "jest --watch --",
"build": "rimraf ./dist && babel ./src --out-dir ./dist",
"preversion": "npm run test:all && npm run build && git commit --allow-empty -am \"Update dist\""
},
"repository": {
"type": "git",
"url": "https://github.com/tvarsis/searchtabular-antd.git"
},
"keywords": [
"search",
"searching",
"reactabular"
],
"files": [
"dist"
],
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules"
],
"setupFiles": [
"<rootDir>/__tests__/setup.js"
],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/setup.js"
]
},
"author": "Vijay Thirugnanam <[email protected]> (http://github.com/vijayst)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tvarsis/searchtabular-antd/issues"
},
"dependencies": {},
"devDependencies": {
"antd": "^4.15.2",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-import": "^1.6.5",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.16.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"git-prepush-hook": "^1.0.2",
"jest": "19.0.2",
"jest-cli": "19.0.2",
"lodash": "4.17.21",
"moment": "^2.29.1",
"prettier": "1.19.1",
"prop-types": "15.7.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-hot-loader": "^4.12.21",
"react-intl-universal": "2.2.2",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"antd": ">= 4.0.0 < 5.0.0",
"lodash": ">= 4.0.0 < 5.0.0",
"moment": ">= 2.0.0 < 5.0.0",
"react": ">= 16.0.0 < 17.0.0",
"react-intl-universal": ">= 2.0.0 < 3.0.0"
},
"pre-push": [
"test:all"
]
}