-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 2.95 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@aureooms/js-search",
"description": "item retrieval code bricks for JavaScript",
"version": "0.0.4",
"author": "aureooms",
"ava": {
"files": [
"test/src/**/*"
],
"require": [
"regenerator-runtime/runtime",
"@babel/register"
],
"timeout": "1m"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"env": {
"test": {
"presets": [
"babel-preset-power-assert"
],
"plugins": [
[
"transform-remove-console",
{
"exclude": [
"log",
"error",
"warn"
]
}
]
],
"sourceMaps": "inline"
},
"development": {
"presets": [
"babel-preset-power-assert"
],
"plugins": [
[
"transform-remove-console",
{
"exclude": [
"log",
"error",
"warn"
]
}
]
],
"sourceMaps": "inline"
},
"production": {
"plugins": [
"babel-plugin-unassert",
[
"transform-remove-console",
{
"exclude": [
"log",
"error",
"warn"
]
}
]
],
"sourceMaps": "inline"
}
}
},
"bugs": {
"url": "https://github.com/make-github-pseudonymous-again/js-search/issues"
},
"dependencies": {},
"devDependencies": {
"@aureooms/js-array": "4.0.0",
"@aureooms/js-random": "2.0.0",
"@babel/cli": "7.13.10",
"@babel/core": "7.13.10",
"@babel/preset-env": "7.13.10",
"@babel/register": "7.13.8",
"ava": "3.15.0",
"babel-plugin-transform-remove-console": "6.9.4",
"babel-plugin-unassert": "3.0.1",
"babel-preset-power-assert": "3.0.0",
"coveralls": "3.1.0",
"esdoc": "1.1.0",
"esdoc-inject-script-plugin": "1.0.0",
"esdoc-inject-style-plugin": "1.0.0",
"esdoc-standard-plugin": "1.0.0",
"np": "7.4.0",
"nyc": "15.1.0",
"power-assert": "1.6.1",
"regenerator-runtime": "0.13.7"
},
"files": [
"lib"
],
"homepage": "http://make-github-pseudonymous-again.github.io/js-search/",
"keywords": [
"binarysearch",
"bricks",
"data",
"javascript",
"js",
"search"
],
"license": "AGPL-3.0",
"main": "lib/index.js",
"repository": {
"url": "https://github.com/make-github-pseudonymous-again/js-search.git",
"type": "git"
},
"scripts": {
"build": "babel --delete-dir-on-start --env-name production src -d lib",
"cover": "nyc --reporter=lcov npm test",
"dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast",
"esdoc": "esdoc",
"lint": "true",
"prepare": "npm run build",
"release": "np",
"test": "ava",
"travis": "npm run lint && npm run cover"
},
"sideEffects": false
}