forked from ivan133/react-json-logic
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.03 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.03 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@amdirent/react-json-logic",
"version": "3.0.0",
"description": "Build and evaluate JsonLogic rules with React Components.",
"main": "./dist/index.js",
"files": [
"dist",
"src",
"lib"
],
"scripts": {
"dev": "concurrently \"yarn-or-npm run start\" \"yarn-or-npm run start:docs\"",
"start": "webpack --watch --config config/webpack/lib.dev.js",
"start:docs": "node config/server.js",
"build": "yarn-or-npm run build:lib && yarn-or-npm run build:docs",
"build:lib": "rimraf dist/index.js && NODE_ENV=production webpack --config config/webpack/lib.prod.js",
"build:docs": "rimraf docs && NODE_ENV=production webpack --config config/webpack/docs.prod.js",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"keywords": [
"react",
"react-json-logic",
"json-logic",
"json-logic-js",
"json-logic-builder",
"json-logic-ui"
],
"author": "Altay Aydemir <altay.aydemir@gmail.com>",
"license": "MIT",
"homepage": "http://altayaydemir.github.io/react-json-logic",
"repository": {
"url": "https://github.com/altayaydemir/react-json-logic.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/altayaydemir/react-json-logic/issues"
},
"peerDependencies": {
"react": ">=15.0",
"react-dom": ">=15.0"
},
"dependencies": {
"brace": "0.9.1",
"escope": "3.6.0",
"json-logic-js-enhanced": "1.1.0",
"mini-css-extract-plugin": "^0.11.2",
"node-sass": "^4.14.1",
"open": "6.4.0",
"prop-types": "^15.6.2",
"react-ace": "4.1.1",
"react-select": "1.0.1"
},
"devDependencies": {
"autoprefixer": "6.7.1",
"babel-cli": "6.22.2",
"babel-core": "6.22.1",
"babel-eslint": "7.1.1",
"babel-loader": "7.1.5",
"babel-plugin-transform-object-rest-spread": "6.22.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.22.0",
"babel-preset-stage-0": "6.22.0",
"babel-register": "6.22.0",
"concurrently": "3.1.0",
"css-loader": "0.26.1",
"enzyme": "2.7.1",
"html-webpack-plugin": "^4.5.0",
"jest": "18.1.0",
"json-loader": "0.5.4",
"lodash.isequal": "4.5.0",
"postcss-loader": "1.2.2",
"react": "15.4.2",
"react-addons-test-utils": "15.4.2",
"react-dom": "15.4.2",
"react-github-fork-ribbon": "0.4.4",
"rimraf": "2.5.4",
"sass-loader": "6.0.7",
"style-loader": "0.13.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"yarn-or-npm": "2.0.3"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-0"
],
"plugins": [
"transform-object-rest-spread"
]
},
"jest": {
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.jsx?$",
"moduleFileExtensions": [
"js",
"json",
"jsx",
"node"
],
"collectCoverageFrom": [
"**/src/**"
],
"moduleNameMapper": {
"^.+\\.(css|scss)$": "<rootDir>/config/jest/styleMock.js",
"^.+\\.(jpe?g|png|gif|ttf|eot|svg|md)$": "<rootDir>/config/jest/fileMock.js"
}
}
}