-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
44 lines (44 loc) · 1.23 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
{
"name": "balance-text",
"version": "3.3.1",
"filename": "balancetext.min.js",
"homepage": "https://github.com/adobe-webplatform/balance-text",
"description": "A library implementing balancing of text across lines in a web page",
"licenses": [
{
"type": "Apache License, Version 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"scripts": {
"build": "uglifyjs balancetext.js > balancetext.min.js",
"lint": "eslint balancetext.js"
},
"main": "balancetext.js",
"maintainers": [
{
"name": "Adobe Systems, Inc.",
"web": "https://github.com/adobe-webplatform"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/adobe-webplatform/balance-text"
}
],
"autoupdate": {
"source": "git",
"target": "git://github.com/adobe-webplatform/balance-text.git",
"basePath": "",
"files": [
"*balancetext*.js"
]
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"uglify-es": "^3.3.9"
}
}