-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 900 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 900 Bytes
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
{
"name": "exitscript",
"version": "1.2.0",
"description": "A client-side popup warning for users clicking on non-government external links.",
"main": "lib/index.js",
"scripts": {
"build": "browserify -g uglifyify lib/index.js -s exitscript > exitscript.min.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/usdoj/exitscript.git"
},
"keywords": [
"external",
"links",
"modal",
"popup",
"government"
],
"author": "brockfanning <brockfanning@gmail.com>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/usdoj/exitscript/issues"
},
"homepage": "https://github.com/usdoj/exitscript#readme",
"dependencies": {
"external-link": "2.x",
"simple-modal": "2.x"
},
"devDependencies": {
"browserify": "16.x",
"jade": "1.x",
"uglifyify": "4.x"
}
}