-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 897 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 897 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
{
"name": "absolutify",
"author": "Beau Sorensen <mail@beausorensen.com> (http://github.com/sorensen)",
"version": "0.1.0",
"description": "Relative to Absolute URL Replacer",
"keywords": [
"url",
"replace",
"relative",
"absolute",
"html"
],
"license": {
"type": "MIT",
"url": "https://github.com/sorensen/absolutify/license"
},
"repository": {
"type": "git",
"url": "git://github.com/sorensen/absolutify.git"
},
"engines": {
"node": ">=4.0"
},
"main": "absolutify.js",
"scripts": {
"test": "npm run hint && ./node_modules/.bin/mocha -R spec ./test.js",
"hint": "./node_modules/.bin/jshint ./",
"minify": "./node_modules/.bin/uglifyjs $npm_package_name.js --output $npm_package_name.min.js --compress --mangle"
},
"devDependencies": {
"jshint": "^2.8.0",
"mocha": "^2.4.5",
"uglify-js": "2.6.2"
}
}