forked from altaywtf/react-json-logic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.46 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.46 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "react-json-logic",
"version": "2.1.0",
"description": "Build and evaluate JsonLogic rules with React Components.",
"main": "./dist/index.js",
"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 && 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",
"json-logic-js-enhanced": "1.1.0",
"react-ace": "4.1.1",
"react-select": "1.0.0-rc.2"
},
"devDependencies": {
"autoprefixer": "6.7.1",
"babel-cli": "6.22.2",
"babel-core": "6.22.1",
"babel-eslint": "7.1.1",
"babel-loader": "6.2.10",
"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",
"eslint": "3.14.1",
"eslint-config-airbnb": "14.0.0",
"eslint-loader": "1.6.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "3.0.2",
"eslint-plugin-react": "6.9.0",
"extract-text-webpack-plugin": "1.0.1",
"html-webpack-plugin": "2.28.0",
"jest": "18.1.0",
"json-loader": "0.5.4",
"lodash.isequal": "4.5.0",
"node-sass": "4.4.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",
"react-hot-loader": "3.0.0-beta.6",
"rimraf": "2.5.4",
"sass-loader": "4.1.1",
"style-loader": "0.13.1",
"webpack": "1.14.0",
"webpack-dev-server": "1.16.2",
"yarn-or-npm": "2.0.3"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true,
"jest": true
},
"rules": {
"global-require": 0,
"import/no-extraneous-dependencies": 0,
"import/imports-first": 0,
"no-param-reassign": 0,
"react/forbid-prop-types": 0
}
},
"babel": {
"presets": [
"react",
"es2015",
"stage-0"
],
"plugins": [
"react-hot-loader/babel",
"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"
}
}
}