forked from typograf/typograf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.59 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
{
"name": "typograf",
"description": "The client and server typography",
"version": "6.8.2",
"author": {
"name": "Denis Seleznev",
"email": "hcodes@yandex.ru",
"url": "https://github.com/typograf/typograf"
},
"main": "dist/typograf.js",
"homepage": "https://github.com/typograf",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/typograf/typograf.git"
},
"keywords": [
"typo",
"text",
"typograf",
"typographer",
"typography"
],
"engines": {
"node": ">= 4"
},
"files": [
"dist",
"docs",
"bin",
"LICENSE",
"typograf.d.ts"
],
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"chai": "^4.2.0",
"del": "^5.0.0",
"eslint": "^6.0.1",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-filter": "^6.0.0",
"gulp-jsonlint": "^1.3.0",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-rollup": "^2.16.2",
"gulp-uglify": "^3.0.2",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"plugin-error": "^1.0.1",
"rollup-plugin-babel": "^4.3.3",
"sinon": "^7.3.2",
"sort-keys": "^3.0.0",
"through": "^2.3.6",
"vinyl": "^2.2.0",
"yaspeller": "^5.1.0"
},
"scripts": {
"benchmark": "node benchmark/test.js",
"dist": "gulp dist",
"eslint": "eslint .",
"prepare": "npm run dist",
"build": "gulp",
"test": "npm run build && npm run eslint && npm run unit-test",
"unit-test": "nyc mocha -u bdd -R spec --recursive test",
"yaspeller": "yaspeller ."
},
"typings": "./typograf.d.ts"
}