-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
125 lines (125 loc) · 3.1 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
{
"name": "plete",
"version": "0.4.0",
"description": "A vanilla js auto complete component",
"keywords": [
"vanilla",
"autocomplete",
"component",
"typeahead",
"filter",
"accessible",
"wai-aria",
"async",
"remote"
],
"repository": {
"type": "git",
"url": "https://github.com/mroderick/plete.git"
},
"homepage": "https://plete.dev",
"main": "dist/plete-cjs.js",
"module": "dist/plete-esm.js",
"scripts": {
"build": "rollup -c && cp lib/plete.css dist/",
"dev-build": "rollup -c --watch",
"lint": "eslint .",
"livereload": "livereload .",
"http-server": "http-server",
"start": "npm-run-all --parallel http-server livereload dev-build",
"start-demo": "eleventy --serve",
"prepublishOnly": "npm test && npm run build",
"preversion": "npm test",
"postversion": "git push --follow-tags && npm publish",
"test": "mocha --require esm --require jsdom-global/register --require make-promises-safe --recursive test lib",
"test-check-coverage": "npm run test-coverage && nyc check-coverage --branches 100 --functions 100 --lines 100",
"test-coverage": "rm -rf node_modules/.cache/esm/ && nyc npm run test",
"version": "changes --commits --footer"
},
"author": {
"name": "Morgan Roderick",
"email": "[email protected]",
"url": "https://roderick.dk"
},
"license": "BSD-3-Clause",
"browserslist": [
"defaults",
"not safari <= 10",
"not IE <= 11",
"not IE_Mob <= 11",
"not op_mini all"
],
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"@sinonjs/referee-sinon": "^7.0.1",
"@studio/changes": "^2.0.1",
"@testing-library/dom": "^6.10.1",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-compat": "^3.3.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.2.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-testing-library": "^2.2.0",
"eslint-plugin-this": "^0.2.3",
"esm": "^3.2.25",
"http-server": "^0.12.3",
"husky": "^4.0.7",
"jsdom": "^16.1.0",
"jsdom-global": "^3.0.2",
"jsverify": "^0.8.4",
"lint-staged": "^10.0.2",
"livereload": "^0.9.0",
"make-promises-safe": "^5.1.0",
"mocha": "^7.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"proxyquire": "^2.1.3",
"rollup": "^1.27.11",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {},
"files": [
"dist/",
"lib/",
"!lib/**/*.test.js"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint"
},
"esm": {
"cjs": true,
"mode": "all"
},
"nyc": {
"all": true,
"cache": false,
"require": [
"esm"
],
"reporter": [
"html",
"text",
"lcovonly"
],
"include": [
"lib/*.js"
],
"exclude": [
"**/*.test.js",
".eslintrc.js",
"coverage/**",
"dist/**",
"lib/arbitraries.js",
"lib/debounce.js"
]
}
}