-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 1.9 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
{
"name": "journalize",
"version": "2.6.0",
"description": "A collection of functions useful for making prose more reader friendly. Inspired by Django's `django.contrib.humanize`.",
"source": "src/index.js",
"module": "dist/journalize.mjs",
"main": "dist/journalize.js",
"unpkg": "dist/journalize.umd.js",
"jsdelivr": "dist/journalize.umd.js",
"types": "types/index.d.ts",
"exports": {
".": {
"import": "./dist/journalize.mjs",
"require": "./dist/journalize.js"
}
},
"files": [
"dist",
"README.md",
"src",
"types"
],
"scripts": {
"build": "microbundle --format cjs,es,umd",
"docs:build": "documentation readme ./src/index.js --readme-file README.md --section 'API Docs' --sort-order alpha && prettier --write README.md",
"docs:serve": "documentation serve --watch ./src/index.js",
"prepublishOnly": "npm run test",
"test": "uvu -r esm",
"test:cov": "c8 --reporter text --reporter lcovonly npm run test",
"test:coveralls": "cat ./coverage/lcov.info | coveralls",
"test:watch": "npm run test -- --watch",
"watch": "microbundle watch --format cjs,es,umd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rdmurphy/journalize.git"
},
"keywords": [
"normalization",
"journalism",
"humanity",
"editing",
"prose"
],
"author": "Ryan Murphy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rdmurphy/journalize/issues"
},
"homepage": "https://github.com/rdmurphy/journalize#readme",
"devDependencies": {
"@newswire/prettier-config": "^3.0.0",
"@sinonjs/fake-timers": "^7.0.0",
"c8": "^7.9.0",
"coveralls": "^3.1.1",
"documentation": "^14.0.1",
"esm": "^3.2.25",
"lefthook": "^1.2.6",
"microbundle": "^0.13.3",
"prettier": "^2.4.1",
"sinon": "^11.1.2",
"uvu": "^0.5.1"
},
"prettier": "@newswire/prettier-config"
}