-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 964 Bytes
/
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
{
"name": "clamps",
"version": "1.0.0",
"description": "A lightweight, Vanilla JS fallback for browsers without -webkit-line-clamp support.",
"keywords": [
"line-clamp",
"-webkit-line-clamp",
"ellipsis",
"truncate"
],
"author": "Lauren Ashpole",
"license": "MIT",
"main": "./dist/clamps.js",
"scripts": {
"compile": "npx babel src/clamps.js -o dist/clamps.js --presets=@babel/preset-env",
"compile-min": "npm run compile && minify dist/clamps.js -o dist/clamps.min.js",
"build": "npm run compile-min && npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/laurenashpole/clamps.git"
},
"bugs": {
"url": "https://github.com/laurenashpole/clamps/issues"
},
"homepage": "https://github.com/laurenashpole/clamps#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"babel-minify": "^0.5.0"
}
}