-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
36 lines (36 loc) · 993 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
35
36
{
"name": "bookmarkleter",
"version": "1.2.0",
"description": "You have JavaScript. You need a bookmarklet. This does that.",
"main": "bookmarkleter.js",
"engines": {
"node": ">=6"
},
"scripts": {
"build": "npm run build:browserify",
"build:browserify": "browserify --ignore @babel/core browser-tool.js -o build/browser-tool.js -p tinyify",
"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.8.3",
"browserify": "17.0.0",
"istanbul": "0.4.5",
"nodeunit": "0.11.3",
"tinyify": "4.0.0"
},
"dependencies": {
"@babel/standalone": "7.21.2",
"babel-minify": "0.5.2"
}
}