-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.64 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.64 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
{
"name": "react-gridifier",
"version": "1.4.0",
"description": "A react wrapper for Jquery Gridifier library",
"author": "Xavier Gouley <gxapplications@gmail.com>",
"contributors": [],
"license": "CC-BY-NC-SA-4.0",
"scripts": {
"start": "webpack-dev-server --config example/webpack.config.js ./example/bootstrap.jsx",
"dist": "babel lib --out-dir dist --compact --minified",
"dist:debug": "babel lib --out-dir dist --source-maps",
"lint": "standard --verbose | snazzy",
"test": "cross-env NODE_ENV=test mocha --require ignore-styles",
"prepublish": "npm run lint && npm run test && npm run dist"
},
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/gxapplications/react-gridifier"
},
"bugs": {
"url": "https://github.com/gxapplications/react-gridifier/issues"
},
"homepage": "https://github.com/gxapplications/react-gridifier",
"keywords": [
"gridifier",
"react"
],
"engines": {
"node": ">= 8.11.1",
"npm": ">= 6.4.1"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"chrome": "45"
}
}
],
"@babel/preset-react"
],
"plugins": [
[
"css-modules-transform",
{
"generateScopedName": "[local]",
"extractCss": "./dist/styles.css"
}
]
]
},
"standard": {
"env": {
"node": true
},
"ignore": [
"/test/"
]
},
"pre-commit": [
"lint",
"test"
],
"dependencies": {
"classnames": "^2.2.6",
"gridifier": "2.0.3",
"prop-types": "^15.7.2",
"react": "^16.2.0",
"react-dom": "^16.2.1",
"react-required-if": "^1.0.3"
},
"devDependencies": {
"@babel/cli": "^7.11.5",
"@babel/core": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.11.5",
"babel-loader": "^8.1.0",
"babel-plugin-css-modules-transform": "^1.6.2",
"chai": "^4.0.1",
"cross-env": "^1.0.7",
"css-loader": "^4.2.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"html-webpack-plugin": "^4.4.1",
"ignore-styles": "^5.0.1",
"jquery": "^3.2.1",
"jsdom": "^11.0.0",
"materialize-css": "^0.98.2",
"mocha": "^3.4.2",
"precommit-hook": "^3.0.0",
"react-addons-test-utils": "^16.0.0-alpha.3",
"react-hot-loader": "^4.12.21",
"snazzy": "^7.0.0",
"standard": "^14.3.4",
"style-loader": "^0.18.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"directories": {
"lib": "./lib",
"dist": "./dist"
}
}