forked from divergentdave/linkify-citations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 968 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
{
"name": "linkify-citations",
"version": "1.2.0",
"description": "JS library to linkify the DOM",
"main": "linkify-citations.js",
"scripts": {
"build:browserify": "./node_modules/.bin/browserify src/linkify-citations.js > linkify-citations.js",
"build:minify": "./node_modules/uglify-js/bin/uglifyjs linkify-citations.js -o linkify.min.js",
"build": "npm run build:browserify && npm run build:minify",
"test": "./node_modules/.bin/tape tests/**.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/18F/linkify-citations.git"
},
"author": "",
"license": "CC0",
"bugs": {
"url": "https://github.com/18F/linkify-citations/issues"
},
"homepage": "https://github.com/18F/linkify-citations#readme",
"devDependencies": {
"browserify": "^11.2.0",
"domify": "^1.4.0",
"jsdom": "^6.5.1",
"tape": "^4.2.0",
"uglify-js": "^2.4.24"
},
"dependencies": {
"citation": "^0.8.1"
}
}