-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
38 lines (38 loc) · 996 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
34
35
36
37
38
{
"name": "horunge",
"version": "1.0.0",
"main": "dist/horunge.js",
"description": "Prevent typographic orphans",
"keywords": [
"typography",
"orphan"
],
"homepage": "https://github.com/davidpaulsson/horunge.js",
"author": {
"name": "David Paulsson",
"email": "david@davidpaulsson.se",
"url": "https://davidpaulsson.se"
},
"repository": {
"type": "git",
"url": "https://github.com/davidpaulsson/horunge.js.git"
},
"licenses": [
{
"type": "WTFPL"
}
],
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"jest": "^21.2.1"
},
"scripts": {
"uglify": "uglifyjs dist/horunge.js -c -m -o dist/horunge.min.js",
"babel": "babel --plugins transform-es2015-modules-umd --presets es2015 src/horunge.js --out-file dist/horunge.js",
"build": "npm run babel && npm run uglify",
"test": "jest"
}
}