-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
31 lines (31 loc) · 992 Bytes
/
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
{
"name": "webrepl-client",
"version": "0.2.1",
"description": "MicroPython's WebREPL Client",
"main": "webrepl.js",
"scripts": {
"test": "./node_modules/.bin/mocha",
"docs": "./node_modules/.bin/jsdoc webrepl.js README.md -d ./docs",
"build-iife": "./node_modules/.bin/rollup webrepl.js -o webrepl.iife.js -n WebREPL -f iife",
"build-cjs": "./node_modules/.bin/rollup webrepl.js -o webrepl.cjs.js -n WebREPL -f cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/murilopolese/webrepl-client.git"
},
"author": "Murilo Polese <murilopolese@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/murilopolese/webrepl-client/issues"
},
"homepage": "https://github.com/murilopolese/webrepl-client#readme",
"devDependencies": {
"chai": "^4.2.0",
"custom-elements": "^1.0.2",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"rollup": "^0.66.6",
"simple-mock": "^0.8.0"
},
"dependencies": {}
}