-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.46 KB
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
{
"name": "@tadashi/highlight",
"version": "5.1.0",
"description": "Make the words shine",
"keywords": [
"highlight",
"mark",
"word",
"text",
"shine"
],
"bug": {
"url": "https://github.com/lagden/highlight",
"email": "lagden@gmail.com"
},
"license": "MIT",
"author": {
"name": "Thiago Lagden",
"email": "lagden@gmail.com"
},
"module": "src/index.mjs",
"main": "dist/index.js",
"repository": "lagden/highlight",
"scripts": {
"rm": "rm -rf dist",
"rollup": "npm run rm && rollup -c",
"report": "nyc report --reporter=text-lcov | coveralls",
"pretest": "xo",
"test": "ava",
"gzip": "find ./dist -name '*.js' -type f -exec sh -c 'gzip -c --best {} > {}.gz' \\;",
"brotli": "find ./dist -name '*.js' -type f -exec sh -c 'brotli -c --best {} > {}.br' \\;",
"prebuild": "npm test",
"build": "npm run rollup && npm run gzip && npm run brotli"
},
"devDependencies": {
"@rollup/plugin-babel": "5.1.0",
"@rollup/plugin-node-resolve": "8.4.0",
"@tadashi/hex": "2.0.0",
"ava": "3.10.1",
"nyc": "15.1.0",
"rollup": "2.21.0",
"xo": "0.32.1"
},
"engines": {
"node": ">=8.5.0"
},
"files": [
"src",
"license",
"README.md",
"dist"
],
"xo": {
"envs": [
"es6"
],
"esnext": true,
"semicolon": false,
"rules": {
"capitalized-comments": 0
}
},
"ava": {
"nodeArguments": [
"--experimental-modules"
]
}
}