-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 3.52 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
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
{
"name": "spacebunny",
"version": "1.1.2",
"description": "NodeJS client library for Space Bunny IoT platform",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start:dev": "cross-env NODE_ENV=development nodemon --watch src",
"start:dev:inspect": "npm run start:dev -- --inspect",
"start:prod": "cross-env NODE_ENV=production nodemon --watch src",
"start:dist": "cross-env NODE_ENV=production node -r source-map-support/register ./dist/app.js",
"start:samples": "serve ./ -l 8080",
"start:node-sample": "cross-env NODE_ENV=production node -r source-map-support/register",
"start:node-sample-dev": "cross-env NODE_ENV=development ts-node",
"remove-lib": "rimraf ./lib",
"clean-lib": "npm run remove-lib && mkdir lib",
"docs": "echo TODO gulp docs'",
"typecheck": "tsc --project tsconfig.json --noEmit --skipLibCheck",
"lint": "eslint -c .eslintrc --ext .ts .",
"prebuild": "rimraf ./lib && mkdir lib",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js --progress --color",
"build:arm": "npm run build -- --platform=linux --arch=arm",
"test": "cross-env NODE_ENV=test TS_TEST=true jest --no-cache",
"test:unit": "npm run test -- --testPathPattern=unit",
"test:integration": "npm run test -- --testPathPattern=integration -i",
"test:e2e": "npm run test -- --testPathPattern=e2e -i",
"test:watch": "npm run test -- --watch",
"test:verbose": "npm run test -- --verbose",
"test:coverage": "npm run test -- --coverage",
"analyze-bundle": "ANALYZER=true webpack --config webpack.config.analyze.js",
"serve": "webpack-dev-server --config webpack.config.prod.js"
},
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/space-bunny/node-sdk.git"
},
"keywords": [
"spacebunny",
"iot"
],
"author": "Fancy Pixel (http://fancypixel.it)",
"license": "MIT",
"dependencies": {
"@stomp/stompjs": "5.4.4",
"amqplib": "0.6.0",
"async-mqtt": "2.6.1",
"axios": "0.21.1",
"bufferutil": "4.0.1",
"humps": "2.0.1",
"lodash.clonedeep": "4.5.0",
"md5": "2.3.0",
"url-join": "4.0.1",
"utf-8-validate": "5.0.2",
"uuid": "8.3.1"
},
"devDependencies": {
"@types/amqplib": "0.5.14",
"@types/faker": "5.1.2",
"@types/humps": "2.0.0",
"@types/jest": "26.0.14",
"@types/js-md5": "0.4.2",
"@types/lodash.clonedeep": "4.5.6",
"@types/md5": "2.2.0",
"@types/minimist": "1.2.0",
"@types/node": "14.11.8",
"@types/url-join": "4.0.0",
"@types/uuid": "8.3.0",
"@typescript-eslint/eslint-plugin": "4.4.1",
"@typescript-eslint/parser": "4.4.1",
"axios-mock-adapter": "1.18.2",
"copy-webpack-plugin": "6.3.0",
"cross-env": "7.0.2",
"dotenv": "8.2.0",
"eslint": "7.11.0",
"eslint-config-airbnb": "18.2.0",
"eslint-loader": "4.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.3.1",
"faker": "5.1.0",
"husky": "4.3.0",
"jest": "26.5.3",
"ncp": "2.0.0",
"nodemon": "2.0.4",
"rimraf": "3.0.2",
"serve": "12.0.0",
"source-map-support": "0.5.19",
"string-replace-loader": "2.3.0",
"terser-webpack-plugin": "4.2.3",
"ts-jest": "26.4.1",
"ts-loader": "8.0.5",
"ts-node": "9.0.0",
"typescript": "4.0.3",
"webpack": "4.44.1",
"webpack-bundle-analyzer": "3.9.0",
"webpack-cli": "4.0.0",
"webpack-dev-server": "3.11.0",
"webpack-md5-hash": "0.0.6",
"webpack-shell-plugin": "0.5.0"
}
}