forked from openexchangerates/javascript-sandbox-console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.36 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
{
"name": "@madisetti/web-sandbox",
"version": "0.0.2",
"description": "Pretty javascript developer console for when you don't want to open inspector.",
"main": "index.js",
"sideEffects": [
"*.css"
],
"watch": {
"build": "./index.js"
},
"scripts": {
"build": "webpack -p",
"watch": "npm-watch",
"dev": "webpack-dev-server --mode=development --host=0.0.0.0 --port=9090",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CarolinaIgnites/javascript-sandbox-console.git"
},
"keywords": [],
"author": "openexchangerates + CarolinaIgnites",
"license": "MIT",
"bugs": {
"url": "https://github.com/CarolinaIgnites/javascript-sandbox-console/issues"
},
"dependencies": {
"backbone": "^1.4.0",
"underscore": ">=1.8.3",
"js-beautify": "^1.11.0",
"jquery": "^3.4.1"
},
"devDependencies": {
"jsdom": "^16.2.2",
"mocha": "^7.1.1",
"css-loader": "^3.5.1",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.2.0",
"path": "^0.12.7",
"style-loader": "^1.1.3",
"url-loader": "^4.1.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}