-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.22 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "shavette",
"version": "1.1.0",
"description": "Truncate text to a specified number of lines",
"license": "MIT",
"repository": "awcross/shavette",
"author": {
"name": "Alex Cross",
"email": "crossaw@gmail.com",
"url": "alexcross.io"
},
"engines": {
"node": ">=6"
},
"scripts": {
"build": "rollup -c",
"test": "xo && ava"
},
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"keywords": [
"shave",
"limit",
"trim",
"shorten",
"truncate",
"text",
"content",
"ellipsis"
],
"dependencies": {
"shave": "^2.5.2"
},
"devDependencies": {
"@babel/preset-env": "^7.2.3",
"ava": "^1.0.1",
"puppeteer": "^1.11.0",
"rollup": "^0.68.1",
"rollup-plugin-babel": "^4.1.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"xo": "^0.23.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"last 2 versions",
"> 1%"
]
}
}
]
],
"env": {
"test": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
}
}
},
"xo": {
"envs": [
"browser"
]
}
}