-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
23 lines (23 loc) · 860 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
{
"name": "html2biblatex",
"version": "2.0.0",
"description": "a tiny bookmarklet for exporting web pages to BibLaTeX",
"main": "README.md",
"repository": "git@github.com:dmstern/html2biblatex.git",
"author": "Daniel Morgenstern <morgenstern.daniel@gmail.com>",
"license": "MIT",
"scripts": {
"transpile": "babel src --presets babel-preset-env --plugins @babel/plugin-proposal-optional-chaining --out-dir build",
"minify": "uglifyjs build/html2biblatex.js -o build/html2biblatex.min.js",
"wrap": "node wrap.js",
"build": "npm run transpile && npm run minify && npm run wrap"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"uglify-js": "^3.12.6"
}
}