-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
41 lines (41 loc) · 1.16 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
{
"name": "browser-module-sandbox",
"version": "2.0.1",
"description": "uses browserify-cdn to run node code in an iframe",
"repository": {
"type": "git",
"url": "[email protected]:maxogden/browser-module-sandbox.git"
},
"dependencies": {
"browser-module-cache": "~0.1.3",
"detective": "^4.0.0",
"iframe": "^1.0.0",
"inherits": "^2.0.1",
"superagent": "^4.0.0-beta.5"
},
"bugs": {
"url": "https://github.com/maxogden/browser-module-sandbox/issues"
},
"homepage": "https://github.com/maxogden/browser-module-sandbox",
"main": "./src/index.js",
"devDependencies": {
"husky": "^1.1.4",
"prettier": "^1.15.2",
"pretty-quick": "^1.8.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
},
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.config --progress --colors",
"watch": "webpack --config webpack.config --colors --watch",
"test": "echo \"Error: no test specified\" && exit 0",
"prepublish": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --ignore-path ./dist"
}
},
"license": "MIT"
}