-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
66 lines (66 loc) · 1.64 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "humanize-plus",
"title": "Humanize",
"description": "A simple utility library for making the web more humane.",
"version": "1.8.2",
"license": "MIT",
"homepage": "https://github.com/HubSpot/humanize",
"main": "./dist/humanize.js",
"author": {
"name": "HubSpotDev",
"email": "[email protected]",
"url": "dev.hubspot.com"
},
"maintainers": [
{
"name": "Jonathan Kim",
"email": "[email protected]",
"web": "http://jonathan-kim.com"
},
{
"name": "Bryan Ash",
"email": "[email protected]",
"web": "http://github.com/b-ash"
},
{
"name": "Andy Aylward",
"email": "[email protected]",
"web": "http://github.com/aaylward"
},
{
"name": "Nicholas Hwang",
"email": "[email protected]",
"web": "http://github.com/geekjuice"
}
],
"repository": {
"type": "git",
"url": "git://github.com/HubSpot/humanize.git"
},
"bugs": {
"url": "https://github.com/HubSpot/humanize/issues"
},
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"reinstall": "del node_modules && npm install",
"clean": "del dist",
"preuglify": "mkdir -p dist",
"uglify": "uglifyjs -cmo dist/humanize.min.js dist/humanize.js",
"watch": "babel --watch src -d dist",
"babel": "babel src -d dist",
"header": "./bin/header",
"build": "./bin/build",
"test": "node __tests__/runner.js"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-preset-es2015-riot": "^1.0.3",
"del-cli": "^0.2.0",
"glob": "^7.0.3",
"jasmine": "^2.4.1",
"uglify-js": "^2.6.2"
}
}