forked from ValYouW/jqPropertyGrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.36 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
{
"name": "jqpropertygrid",
"version": "3.4.0",
"description": "A small and simple property grid in JS to view/edit POJOs, excellent if you have a \"settings\" object you want to give the user to edit",
"main": "jqPropertyGrid.js",
"directories": {
"example": "example"
},
"scripts": {
"start": "cross-env NODE_ENV=dev webpack-dev-server",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"postversion": "git push && git push --tags",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/ValYouW/jqPropertyGrid.git"
},
"keywords": [
"jquery-plugin",
"ecosystem:jquery"
],
"author": "ValYouW",
"license": "MIT",
"bugs": {
"url": "https://github.com/ValYouW/jqPropertyGrid/issues"
},
"homepage": "https://github.com/ValYouW/jqPropertyGrid",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"cross-env": "^5.1.1",
"cross-spawn": "^5.1.0",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-dev-server": "^2.9.4",
"webpack-hot-middleware": "^2.20.0"
}
}