forked from arduino/arduino-create-agent-js-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.08 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
{
"name": "arduino-create-agent-js-client",
"version": "1.2.4",
"description": "JS module providing discovery of the Arduino Create Plugin and communication with it",
"main": "./src/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"dist",
"lib",
"es",
"src"
],
"directories": {
"lib": "lib"
},
"dependencies": {
"detect-browser": "^2.5.1",
"rxjs": "^6.2.1",
"semver-compare": "^1.0.0",
"socket.io-client": "2.1.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.1.6",
"eslint": "^5.2.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"html-webpack-plugin": "^3.2.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.6.2",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify-es": "^0.0.1",
"rollup-watch": "^4.3.1",
"webpack": "^3.11.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^2.11.1"
},
"scripts": {
"test": "",
"dev": "webpack-dev-server",
"lint": "./node_modules/.bin/eslint src",
"lint-fix": "./node_modules/.bin/eslint --fix src --ext .js",
"clean": "rimraf lib dist es",
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min && npm run build:es",
"build:watch": "echo 'build && watch the COMMONJS version of the package - for other version, run specific tasks' && npm run build:commonjs:watch",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:commonjs:watch": "npm run build:commonjs -- --watch",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:es:watch": "npm run build:es -- --watch",
"build:umd": "cross-env BABEL_ENV=es NODE_ENV=development node_modules/.bin/rollup src/index.js --config --sourcemap --output dist/create-plugin.js",
"build:umd:watch": "npm run build:umd -- --watch",
"build:umd:min": "cross-env BABEL_ENV=es NODE_ENV=production rollup src/index.js --config --output dist/create-plugin.min.js",
"prepare": "npm run clean && npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arduino/arduino-create-agent-js-client.git"
},
"keywords": [
"arduino",
"create",
"agent",
"plugin"
],
"contributors": [
"Stefania Mellai <[email protected]>",
"Fabrizio Mirabito <[email protected]>",
"Alberto Iannaccone <[email protected]>",
"Gabriele Destefanis <[email protected]>"
],
"license": "GPLv3",
"bugs": {
"url": "https://github.com/arduino/arduino-create-agent-js-client/issues"
},
"homepage": "https://github.com/arduino/arduino-create-agent-js-client#readme"
}