-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.1 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
{
"name": "font-feature-fibbing",
"version": "0.4.1",
"description": "Hey, do you support the font-feature-settings CSS property? Safari, look—I know you’re lying!",
"homepage": "https://github.com/kennethormandy/font-feature-fibbing",
"repository": "https://github.com/kennethormandy/font-feature-fibbing.git",
"license": "MIT",
"main": "src/index.js",
"author": "Kenneth Ormandy <hello@kennethormandy.com> (http://kennethormandy.com)",
"scripts": {
"test": "http-server -s -p 8095 & open http://localhost:8095/test",
"build-js": "browserify src/index.js -s fontFeatureFibbing -o dist/font-feature-fibbing.js && minify dist/font-feature-fibbing.js dist/font-feature-fibbing.js",
"build": "npm run build-js",
"lint": "standard src/",
"posttest": "npm run lint"
},
"keywords": [
"type",
"typograhpy",
"font",
"tester"
],
"devDependencies": {
"browserify": "^8.0.0",
"http-server": "^0.7.4",
"minify": "git://github.com/ianstormtaylor/minify#0.2.0",
"mocha": "~1.18.2",
"standard": "5.4.1"
},
"dependencies": {
"vigour-ua": "0.0.5"
}
}