This repository was archived by the owner on Jan 30, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·80 lines (80 loc) · 2.27 KB
/
package.json
File metadata and controls
executable file
·80 lines (80 loc) · 2.27 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
{
"name": "netjsonconfig-editor.js",
"version": "0.1.0",
"description": "Javascript based UI for editing netjson. contains and advanced mode raw json editor and a GUI based netjson editor. Has inbuilt validation following json-schema standards",
"main": "index.js",
"scripts": {
"lint": "eslint --fix src/js/*/*.js",
"build": "webpack -p",
"watch": "webpack -d --watch",
"dev": "webpack-dev-server --colors",
"error": "webpack --display-error-details",
"test": "mocha-phantomjs testRunner.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openwisp/netjsonconfig-editor.js"
},
"keywords": [
"json",
"editor",
"netjson",
"openWisp",
"openWisp 2",
"validation",
"javascript",
"UI",
"django-netjsonconfig",
"netjsonconfig-editor.js",
"netjsonconfig",
"editor.js"
],
"author": "gastonche",
"license": "ISC",
"bugs": {
"url": "https://github.com/openwisp/netjsonconfig-editor.js/issues"
},
"homepage": "https://github.com/openwisp/netjsonconfig-editor.js#readme",
"dependencies": {
"ajv": "^5.2.2",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bootstrap": "^3.3.7",
"classnames": "^2.2.5",
"deepmerge": "^1.5.1",
"jquery": "^3.2.1",
"jsoneditor": "^5.7.0",
"liform-react": "git://github.com/gastonche/liform-react.git#stable",
"loadash": "^1.0.0",
"lodash": "^4.10.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"redux": "^3.6.0",
"redux-form": "^7.0.3"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.1",
"babel-preset-stage-0": "^6.5.0",
"chai": "^4.0.2",
"css-loader": "^0.28.4",
"eslint": "^4.4.0",
"eslint-config-google": "^0.9.1",
"eslint-config-rackt": "^1.1.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-react": "^7.1.0",
"file-loader": "^0.11.2",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"mocha": "^3.4.2",
"mocha-phantomjs": "^4.1.0",
"style-loader": "^0.18.2",
"webpack": "^3.1.0",
"webpack-dev-server": "^2.5.1"
}
}