-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 898 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
32
33
34
{
"name": "bookmarkleter",
"version": "1.0.1",
"description": "You have JavaScript. You need a bookmarklet. This does that.",
"main": "bookmarkleter.js",
"engines": {
"node": ">=6"
},
"scripts": {
"build": "browserify browser-tool.js | minify > build/browser-tool.js",
"coverage": "istanbul cover nodeunit test",
"test": "npm run coverage"
},
"repository": {
"type": "git",
"url": "git://github.com/chriszarate/bookmarkleter.git"
},
"author": "Chris Zarate",
"license": "PDDL-1.0",
"bugs": {
"url": "https://github.com/chriszarate/bookmarkleter/issues"
},
"homepage": "https://github.com/chriszarate/bookmarkleter",
"devDependencies": {
"angular": "^1.6.3",
"browserify": "^14.1.0",
"istanbul": "^0.4.5",
"nodeunit": "^0.11.0"
},
"dependencies": {
"babel-minify": "^0.5.0",
"babel-standalone": "^6.17.0"
}
}