This repository was archived by the owner on Sep 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.71 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 3.71 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": "simulator",
"version": "2.0.0",
"description": "Xively (https://xively.com/) Product Simulator",
"scripts": {
"build": "npm run clean && NODE_ENV=production webpack",
"build:watch": "npm run clean && webpack --watch",
"clean": "rimraf public",
"dev": "npm run clean && parallelshell 'npm run start:watch' 'webpack --watch'",
"lint": "eslint server client config provision",
"local-provision": "sh provision/pre-provision.sh && npm run provision",
"provision": "NODE_ENV=provision node provision",
"start": "node server",
"start:watch": "NODE_ENV=development nodemon server --watch server --watch config",
"syncdb": "NODE_ENV=test node scripts/syncdb",
"test": "npm run test-server && npm run test-client",
"test-client": "karma start --single-run",
"test-client:watch": "karma start",
"test-server": "NODE_ENV=test mocha --require co-mocha 'server/**/*.spec.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xively/concaria.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/xively/concaria/issues"
},
"homepage": "https:// github.com/xively/concaria#readme",
"devDependencies": {
"angular": "1.5.5",
"angular-animate": "1.5.5",
"angular-mocks": "1.5.5",
"angular-ui-ace": "0.2.3",
"angular-ui-router": "0.2.18",
"babel-core": "6.7.7",
"babel-loader": "6.2.4",
"babel-polyfill": "6.8.0",
"babel-preset-es2015": "6.6.0",
"brace": "0.8.0",
"chai": "3.5.0",
"co-mocha": "1.1.2",
"css-loader": "0.23.1",
"eslint": "2.9.0",
"eslint-config-angular": "0.5.0",
"eslint-config-standard": "5.2.0",
"eslint-plugin-angular": "1.0.1",
"eslint-plugin-promise": "1.1.0",
"eslint-plugin-standard": "1.3.2",
"exports-loader": "0.6.3",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.8.5",
"html-loader": "0.4.3",
"html-webpack-plugin": "2.16.0",
"istanbul-instrumenter-loader": "0.2.0",
"karma": "0.13.22",
"karma-coverage": "0.5.5",
"karma-mocha": "0.2.2",
"karma-phantomjs-launcher": "1.0.0",
"karma-sinon": "1.0.4",
"karma-sinon-chai": "1.2.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "1.7.0",
"less": "2.6.1",
"less-loader": "2.2.3",
"less-plugin-autoprefix": "1.5.1",
"less-plugin-clean-css": "1.5.1",
"lolex": "1.4.0",
"mocha": "2.4.5",
"ng-annotate-loader": "0.1.0",
"ng-cache-loader": "0.0.15",
"ng-file-upload": "12.0.4",
"ng-tags-input": "3.0.0",
"normalize.css": "4.1.1",
"parallelshell": "2.0.0",
"phantomjs-prebuilt": "2.1.7",
"pre-commit": "1.1.2",
"qrcodejs2": "0.0.2",
"rimraf": "2.5.2",
"sinon": "1.17.3",
"sinon-chai": "2.8.0",
"socket.io-client": "1.4.5",
"style-loader": "0.13.1",
"super-request": "1.1.0",
"svg-inline-loader": "0.4.1",
"url-loader": "0.5.7",
"webpack": "1.13.0",
"webpack-split-by-path": "0.0.8"
},
"dependencies": {
"body-parser": "1.15.0",
"chart.js": "1.1.1",
"cookie-parser": "1.4.1",
"dotenv": "2.0.0",
"express": "4.13.4",
"faker": "3.1.0",
"geojson-extent": "0.3.2",
"geojson-random": "0.2.2",
"geojson-utils": "1.1.0",
"jsforce": "1.6.1",
"json-loader": "0.5.4",
"knex": "0.10.0",
"lodash": "4.11.1",
"moment": "2.13.0",
"mqtt": "1.10.0",
"multer": "1.1.0",
"node-red-habanero": "^1.0.10",
"pg": "4.5.5",
"redis": "2.6.0-1",
"request-promise": "3.0.0",
"serve-favicon": "2.3.0",
"socket.io": "1.4.5",
"uuid": "2.0.2",
"winston": "2.2.0"
},
"engines": {
"node": "4.4.0"
},
"pre-commit": [
"lint",
"test"
]
}