Skip to content

Commit 62d3f45

Browse files
author
Alberto Iannaccone
committed
restore package.json
1 parent a815e5b commit 62d3f45

File tree

1 file changed

+42
-99
lines changed

1 file changed

+42
-99
lines changed

package.json

+42-99
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,25 @@
11
{
2-
"_from": "arduino-create-agent-js-client@^1.0.3",
3-
4-
"_inBundle": false,
5-
"_integrity": "sha512-EOFDmI6Qe0YpEFzkZUwntS/kW9+tb5D7El8YroXQOA2Tw5q/ntSxT4awybqAjOerWCf9BfHuBYwOP7XMFveLOw==",
6-
"_location": "/arduino-create-agent-js-client",
7-
"_phantomChildren": {
8-
"after": "0.8.2",
9-
"backo2": "1.0.2",
10-
"base64-arraybuffer": "0.1.5",
11-
"blob": "0.0.4",
12-
"component-bind": "1.0.0",
13-
"component-emitter": "1.2.1",
14-
"component-inherit": "0.0.3",
15-
"has-binary": "0.1.7",
16-
"has-cors": "1.1.0",
17-
"indexof": "0.0.1",
18-
"json3": "3.3.2",
19-
"object-component": "0.0.3",
20-
"options": "0.0.6",
21-
"parsejson": "0.0.3",
22-
"parseqs": "0.0.5",
23-
"parseuri": "0.0.5",
24-
"to-array": "0.1.4",
25-
"wtf-8": "1.0.0",
26-
"yeast": "0.1.2"
27-
},
28-
"_requested": {
29-
"type": "range",
30-
"registry": true,
31-
"raw": "arduino-create-agent-js-client@^1.0.3",
32-
"name": "arduino-create-agent-js-client",
33-
"escapedName": "arduino-create-agent-js-client",
34-
"rawSpec": "^1.0.3",
35-
"saveSpec": null,
36-
"fetchSpec": "^1.0.3"
37-
},
38-
"_requiredBy": [
39-
"/"
2+
"name": "arduino-create-agent-js-client",
3+
"version": "1.0.5",
4+
"description": "JS module providing discovery of the Arduino Create Plugin and communication with it",
5+
"main": "./src/index.js",
6+
"module": "es/index.js",
7+
"jsnext:main": "es/index.js",
8+
"files": [
9+
"dist",
10+
"lib",
11+
"es",
12+
"src"
4013
],
41-
"_resolved": "https://registry.npmjs.org/arduino-create-agent-js-client/-/arduino-create-agent-js-client-1.0.3.tgz",
42-
"_shasum": "c33caef538f1001ffa43a0cb6a11f40a990a9518",
43-
"_spec": "arduino-create-agent-js-client@^1.0.3",
44-
"_where": "/home/alberto/work/create-gettingstarted-site",
45-
"bugs": {
46-
"url": "https://github.com/arduino/arduino-create-agent-js-client/issues"
14+
"directories": {
15+
"lib": "lib"
4716
},
48-
"bundleDependencies": false,
49-
"contributors": [
50-
{
51-
"name": "Stefania Mellai",
52-
"email": "[email protected]"
53-
},
54-
{
55-
"name": "Fabrizio Mirabito",
56-
"email": "[email protected]"
57-
},
58-
{
59-
"name": "Alberto Iannaccone",
60-
"email": "[email protected]"
61-
},
62-
{
63-
"name": "Gabriele Destefanis",
64-
"email": "[email protected]"
65-
}
66-
],
6717
"dependencies": {
6818
"detect-browser": "^2.5.1",
6919
"rxjs": "^6.2.1",
7020
"semver-compare": "^1.0.0",
7121
"socket.io-client": "1.7.4"
7222
},
73-
"deprecated": false,
74-
"description": "JS module providing discovery of the Arduino Create Plugin and communication with it",
7523
"devDependencies": {
7624
"babel-cli": "^6.26.0",
7725
"babel-core": "^6.26.3",
@@ -100,47 +48,42 @@
10048
"webpack-cli": "^3.0.8",
10149
"webpack-dev-server": "^2.11.1"
10250
},
103-
"directories": {
104-
"lib": "lib"
105-
},
106-
"files": [
107-
"dist",
108-
"lib",
109-
"es",
110-
"src"
111-
],
112-
"homepage": "https://github.com/arduino/arduino-create-agent-js-client#readme",
113-
"jsnext:main": "es/index.js",
114-
"keywords": [
115-
"arduino",
116-
"create",
117-
"agent",
118-
"plugin"
119-
],
120-
"license": "GPLv3",
121-
"main": "./src/index.js",
122-
"module": "es/index.js",
123-
"name": "arduino-create-agent-js-client",
124-
"repository": {
125-
"type": "git",
126-
"url": "git+https://github.com/arduino/arduino-create-agent-js-client.git"
127-
},
12851
"scripts": {
52+
"test": "",
53+
"dev": "webpack-dev-server",
54+
"lint": "./node_modules/.bin/eslint src",
55+
"lint-fix": "./node_modules/.bin/eslint --fix src --ext .js",
56+
"clean": "rimraf lib dist es",
12957
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min && npm run build:es",
58+
"build:watch": "echo 'build && watch the COMMONJS version of the package - for other version, run specific tasks' && npm run build:commonjs:watch",
13059
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
13160
"build:commonjs:watch": "npm run build:commonjs -- --watch",
13261
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
13362
"build:es:watch": "npm run build:es -- --watch",
13463
"build:umd": "cross-env BABEL_ENV=es NODE_ENV=development node_modules/.bin/rollup src/index.js --config --sourcemap --output dist/create-plugin.js",
135-
"build:umd:min": "cross-env BABEL_ENV=es NODE_ENV=production rollup src/index.js --config --output dist/create-plugin.min.js",
13664
"build:umd:watch": "npm run build:umd -- --watch",
137-
"build:watch": "echo 'build && watch the COMMONJS version of the package - for other version, run specific tasks' && npm run build:commonjs:watch",
138-
"clean": "rimraf lib dist es",
139-
"dev": "webpack-dev-server",
140-
"lint": "eslint src",
141-
"lint-fix": "eslint --fix src --ext .js",
142-
"prepare": "npm run clean && npm test && npm run build",
143-
"test": ""
65+
"build:umd:min": "cross-env BABEL_ENV=es NODE_ENV=production rollup src/index.js --config --output dist/create-plugin.min.js",
66+
"prepare": "npm run clean && npm test && npm run build"
67+
},
68+
"repository": {
69+
"type": "git",
70+
"url": "git+https://github.com/arduino/arduino-create-agent-js-client.git"
71+
},
72+
"keywords": [
73+
"arduino",
74+
"create",
75+
"agent",
76+
"plugin"
77+
],
78+
"contributors": [
79+
"Stefania Mellai <[email protected]>",
80+
"Fabrizio Mirabito <[email protected]>",
81+
"Alberto Iannaccone <[email protected]>",
82+
"Gabriele Destefanis <[email protected]>"
83+
],
84+
"license": "GPLv3",
85+
"bugs": {
86+
"url": "https://github.com/arduino/arduino-create-agent-js-client/issues"
14487
},
145-
"version": "1.0.5"
88+
"homepage": "https://github.com/arduino/arduino-create-agent-js-client#readme"
14689
}

0 commit comments

Comments
 (0)