-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 1.82 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "sensor-widgets",
"version": "0.2.0",
"description": "Configurable graphical components for your SOS sensor data.",
"directories": {
"doc": "doc",
"example": "examples"
},
"scripts": {
"test:lint": "eslint src",
"test:karma": "karma start karma.config.js",
"test": "npm run test:lint && npm run test:karma",
"start": "webpack-dev-server --env.dev --open",
"build": "npm run test && webpack --env.prod",
"deploy": "npm run build && gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git://github.com/oscarfonts/sensor-widgets.git"
},
"author": "Oscar Fonts <[email protected]> (http://fonts.cat)",
"license": "MIT",
"bugs": {
"url": "https://github.com/oscarfonts/sensor-widgets/issues"
},
"devDependencies": {
"chai": "^4.2.0",
"copy-webpack-plugin": "^6.1.0",
"css-loader": "^4.3.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.0",
"file-loader": "^6.1.0",
"gh-pages": "^3.1.0",
"jsdom": "^16.4.0",
"karma": "^5.2.2",
"karma-jsdom-launcher": "^8.0.2",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^4.0.2",
"mocha": "^8.1.3",
"raw-loader": "^4.0.1",
"sinon": "^9.0.3",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"write-file-webpack-plugin": "^4.5.1"
},
"dependencies": {
"bootstrap": "^3.4.1",
"daterangepicker": "^3.1.0",
"flot": "^4.2.1",
"flot-plugins": "^3.9.1",
"highcharts": "^8.2.0",
"highlightjs": "^9.16.2",
"jqgrid": "^4.6.4",
"jquery": "^3.5.1",
"jquery-ui": "^1.12.1",
"leaflet": "^1.7.1",
"moment": "^2.27.0"
}
}