-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.04 KB
/
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
37
{
"name": "metricjs",
"version": "1.0.1",
"description": "A unit of measurement converter for javascript",
"main": "./metric.min.js",
"scripts": {
"clean": "rm ./metric.min.js",
"jshint:build": "jshint --reporter=node_modules/jshint-stylish ./metric.js",
"jshint": "npm run jshint:build",
"uglify:build": "uglifyjs ./metric.js --compress --mangle -o ./metric.min.js",
"uglify": "npm run uglify:build",
"build": "npm run clean && npm run jshint && npm run uglify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ianramosc/metric.js.git"
},
"keywords": [
"converter",
"unit of measurement"
],
"author": {
"name": "Ian Ramos",
"email": "[email protected]",
"url": "https://ianramosc.github.io/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ianramosc/metric.js/issues"
},
"homepage": "https://github.com/ianramosc/metric.js#readme",
"devDependencies": {
"jshint": "^2.9.1",
"jshint-stylish": "^2.1.0",
"uglify-js": "^2.6.2"
}
}