forked from wooorm/franc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.85 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"private": true,
"name": "franc",
"description": "Monorepo for franc packages",
"license": "MIT",
"repository": "https://github.com/wooorm/franc",
"bugs": "https://github.com/wooorm/franc/issues",
"author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
"devDependencies": {
"alpha-sort": "^3.0.0",
"browserify": "^17.0.0",
"format": "^0.2.0",
"human-format": "^0.11.0",
"is-hidden": "^1.0.0",
"iso-639-3": "^2.0.0",
"lerna": "^3.0.0",
"negate": "^1.0.0",
"nyc": "^15.0.0",
"parse-author": "^2.0.0",
"prettier": "^2.0.0",
"remark-cli": "^9.0.0-alpha.1",
"remark-lint-no-heading-punctuation": "^2.0.0",
"remark-lint-no-html": "^2.0.0",
"remark-lint-table-pipe-alignment": "^2.0.0",
"remark-preset-wooorm": "^8.0.0",
"remark-stringify": "^8.0.0",
"speakers": "^1.0.0",
"tape": "^5.0.0",
"tinyify": "^3.0.0",
"trigrams": "^4.0.0",
"udhr": "^4.0.0",
"unicode-12.1.0": "^0.8.0",
"unified": "^9.0.0",
"unist-builder": "^2.0.0",
"xo": "^0.33.0",
"xtend": "^4.0.0"
},
"scripts": {
"postinstall": "lerna bootstrap --no-ci",
"generate": "node script/build",
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
"build-bundle-s": "browserify packages/franc-min -s franc -p tinyify > franc-min.js",
"build-bundle-m": "browserify packages/franc -s franc -p tinyify > franc.js",
"build-bundle-l": "browserify packages/franc-all -s franc -p tinyify > franc-all.js",
"build-bundle": "npm run build-bundle-s && npm run build-bundle-m && npm run build-bundle-l",
"build": "npm run build-bundle",
"test-api": "node test",
"test-coverage": "nyc --reporter lcov tape test/index.js",
"test": "npm run generate && npm run format && npm run build && npm run test-coverage"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"functions": 100,
"branches": 100
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"esnext": false,
"rules": {
"unicorn/no-fn-reference-in-iterator": "off",
"unicorn/no-hex-escape": "off",
"unicorn/prefer-includes": "off",
"unicorn/prefer-number-properties": "off",
"camelcase": "off",
"guard-for-in": "off",
"no-misleading-character-class": "off"
},
"ignores": [
"franc-all.js",
"franc-min.js",
"franc.js"
]
},
"remarkConfig": {
"plugins": [
"preset-wooorm",
[
"gfm",
{"tablePipeAlign": false}
],
[
"remark-lint-table-pipe-alignment",
false
],
[
"remark-lint-no-html",
false
],
[
"remark-lint-no-heading-punctuation",
false
]
]
}
}