-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 2.14 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
70
{
"name": "tipograph",
"author": {
"name": "Petr Nevyhoštěný",
"email": "[email protected]"
},
"description": "A little javascript library and command line tool that makes your written content more typographically correct.",
"version": "0.7.4",
"homepage": "https://github.com/nevyk/tipograph",
"contributors": [
{
"name": "Petr Nevyhoštěný",
"email": "[email protected]"
}
],
"keywords": [
"tipograph",
"typography",
"type",
"converter",
"curly",
"quotes",
"dash"
],
"repository": {
"type": "git",
"url": "https://github.com/nevyk/tipograph"
},
"license": "MIT",
"bugs": "https://github.com/nevyk/tipograph/issues",
"main": "./index",
"files": [
"src",
"dist",
"index.js",
"cli.js",
"rules.md",
"index.html"
],
"bin": {
"tipograph": "cli.js"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"build:watch": "rollup -c rollup.config.js --watch",
"test": "npm run test:presets && npm run test:languages && npm run test:formats && npm run test:integration && npm run test:changes && npm run test:benchmark",
"test:presets": "node -r esm test/presets.js",
"test:languages": "node -r esm test/languages.js",
"test:formats": "node -r esm test/formats.js",
"test:integration": "node -r esm test/integration.js",
"test:changes": "node -r esm test/changes.js",
"test:benchmark": "node -r esm test/benchmark.js",
"doc": "node scripts/readme.js; node -r esm scripts/rules.js",
"prepare-release": "node scripts/prepare-release.js",
"prepare": "npm run build"
},
"dependencies": {
"yargs": "^15.4.1"
},
"devDependencies": {
"chalk": "^4",
"esm": "^3",
"rollup": "^3",
"@rollup/plugin-eslint": "^8",
"rollup-plugin-gzip": "^3",
"rollup-plugin-license": "^2",
"rollup-plugin-terser": "^7"
},
"unpkg": "dist/tipograph.min.js"
}