main
Last change
on this file since e48199a was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
1.8 KB
|
Line | |
---|
1 | {
|
---|
2 | "name": "is-alphabetical",
|
---|
3 | "version": "1.0.4",
|
---|
4 | "description": "Check if a character is alphabetical",
|
---|
5 | "license": "MIT",
|
---|
6 | "keywords": [
|
---|
7 | "string",
|
---|
8 | "character",
|
---|
9 | "char",
|
---|
10 | "code",
|
---|
11 | "alphabetical"
|
---|
12 | ],
|
---|
13 | "repository": "wooorm/is-alphabetical",
|
---|
14 | "bugs": "https://github.com/wooorm/is-alphabetical/issues",
|
---|
15 | "funding": {
|
---|
16 | "type": "github",
|
---|
17 | "url": "https://github.com/sponsors/wooorm"
|
---|
18 | },
|
---|
19 | "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
|
---|
20 | "contributors": [
|
---|
21 | "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
|
---|
22 | ],
|
---|
23 | "files": [
|
---|
24 | "index.js"
|
---|
25 | ],
|
---|
26 | "dependencies": {},
|
---|
27 | "devDependencies": {
|
---|
28 | "browserify": "^16.0.0",
|
---|
29 | "nyc": "^15.0.0",
|
---|
30 | "prettier": "^1.0.0",
|
---|
31 | "remark-cli": "^7.0.0",
|
---|
32 | "remark-preset-wooorm": "^6.0.0",
|
---|
33 | "tape": "^4.0.0",
|
---|
34 | "tinyify": "^2.0.0",
|
---|
35 | "xo": "^0.25.0"
|
---|
36 | },
|
---|
37 | "scripts": {
|
---|
38 | "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
|
---|
39 | "build-bundle": "browserify -s isAlphabetical -o is-alphabetical.js",
|
---|
40 | "build-mangle": "browserify -s isAlphabetical -p tinyify -o is-alphabetical.min.js",
|
---|
41 | "build": "npm run build-bundle && npm run build-mangle",
|
---|
42 | "test-api": "node test",
|
---|
43 | "test-coverage": "nyc --reporter lcov tape test.js",
|
---|
44 | "test": "npm run format && npm run build && npm run test-coverage"
|
---|
45 | },
|
---|
46 | "prettier": {
|
---|
47 | "tabWidth": 2,
|
---|
48 | "useTabs": false,
|
---|
49 | "singleQuote": true,
|
---|
50 | "bracketSpacing": false,
|
---|
51 | "semi": false,
|
---|
52 | "trailingComma": "none"
|
---|
53 | },
|
---|
54 | "xo": {
|
---|
55 | "prettier": true,
|
---|
56 | "esnext": false,
|
---|
57 | "rules": {
|
---|
58 | "capitalized-comments": "off"
|
---|
59 | },
|
---|
60 | "ignores": [
|
---|
61 | "is-alphabetical.js"
|
---|
62 | ]
|
---|
63 | },
|
---|
64 | "nyc": {
|
---|
65 | "check-coverage": true,
|
---|
66 | "lines": 100,
|
---|
67 | "functions": 100,
|
---|
68 | "branches": 100
|
---|
69 | },
|
---|
70 | "remarkConfig": {
|
---|
71 | "plugins": [
|
---|
72 | "preset-wooorm"
|
---|
73 | ]
|
---|
74 | }
|
---|
75 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.