-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.95 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
{
"name": "fontsampler-js",
"version": "0.1.5",
"description": "Render configurable webfont testers for woff / woff2 / variable fonts",
"keywords": [
"webfont",
"font",
"variable font",
"tester",
"browser",
"interface"
],
"author": {
"name": "Johannes Neumeier",
"email": "hello@underscoretype.com"
},
"bugs": {
"url": "https://github.com/kontur/fontsampler-js/issues"
},
"license": "MIT",
"main": "src/fontsampler.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kontur/fontsampler-js.git"
},
"scripts": {
"test": "protractor conf.js",
"start": "http-server -a 127.0.0.1 -p 8888 -o",
"js": "watchify src/fontsampler.js -o 'derequire > dist/fontsampler.js' -v -s 'Fontsampler'",
"js-compressed": "watchify src/fontsampler.js -o 'derequire > dist/fontsampler.min.js' -v -s 'Fontsampler'",
"js-skin": "watchify src/skin.js -o 'derequire > dist/fontsampler-skin.js' -v -s 'FontsamplerSkin'",
"js-skin-compressed": "watchify src/skin.js -o 'derequire | uglifyjs > dist/fontsampler-skin.min.js' -v -s 'FontsamplerSkin'",
"scss": "sass --watch scss/fontsampler-skin.scss:dist/fontsampler-skin.css",
"scss-compressed": "sass --watch --style compressed scss/fontsampler-skin.scss:dist/fontsampler-skin.min.css",
"sync-docs": "syncdir dist docs/assets --watch"
},
"dependencies": {
"dropkickjs": "^2.2.4",
"extend": "^3.0.2",
"fontfaceobserver": "^2.1.0",
"woff2-feature-test": "^1.0.3"
},
"devDependencies": {
"browserify": "^16.2.3",
"derequire": "^2.1.1",
"http-server": "^14.1.1",
"jasmine": "^3.4.0",
"jasmine-ts-console-reporter": "^3.1.1",
"protractor": "^7.0.0",
"sync-directory": "^6.0.5",
"uglifyjs": "^2.4.11",
"watchify": "^4.0.0"
}
}