forked from react-querybuilder/react-querybuilder
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.74 KB
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
{
"name": "react-querybuilder",
"version": "1.4.4",
"description": "The React <QueryBuilder /> component for constructing queries",
"main": "dist/index.js",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/sapientglobalmarkets/react-querybuilder"
},
"keywords": [
"react",
"query",
"builder",
"operators",
"ui",
"component"
],
"author": "Pavan Podila <pavan@pixelingene.com> (http://blog.pixelingene.com)",
"license": "MIT",
"homepage": "https://github.com/sapientglobalmarkets/react-querybuilder",
"engines": {
"node": "12"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-export-default-from": "^7.24.1",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.24.0",
"babel-loader": "^8.3.0",
"babel-plugin-istanbul": "^6.1.1",
"chai": "^4.1.2",
"codecov.io": "^0.1.6",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.10.0",
"del-cli": "^1.1.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"gh-pages": "^1.1.0",
"github-changes": "^1.1.1",
"html-webpack-plugin": "^5.6.0",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-es6-shim": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^5.0.1",
"mini-css-extract-plugin": "^2.8.0",
"mocha": "^4.0.1",
"phantomjs-prebuilt": "^2.1.16",
"postcss-cssnext": "^3.0.2",
"postcss-loader": "^2.0.9",
"react": "^16.2.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0",
"sass": "^1.71.0",
"sass-loader": "^14.1.0",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.2",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"uuid": "^11.1.1"
},
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"scripts": {
"release": "mkdir -p ./releases && cd ./releases && npm pack ..",
"start": "webpack-dev-server --env dev",
"dist": "del dist; webpack --env prod",
"publish:demo": "npm run dist && node gh-pages.publish.js",
"test": "karma start karma.conf.js",
"test:watch": "npm test -- --no-single-run --auto-watch",
"codecov": "cat coverage/*/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js",
"generate-changelog": "node node_modules/github-changes -o sapientglobalmarkets -r react-querybuilder -a --use-commit-body --only-pulls --date-format=\"(YYYY/MM/DD)\""
},
"packageManager": "yarn@3.2.1"
}