-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.88 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
{
"name": "vanillajs-browser-helpers",
"version": "2.0.2",
"description": "Collection of convenience code snippets (helpers) that aims to make it a little easier to work with vanilla JS in the browser",
"deprecated": "This package is no longer maintained. Please use @jsfns/web instead.",
"author": "Toke Voltelen",
"license": "MIT",
"browser": "./index.js",
"module": "./index.mjs",
"types": "./index.d.ts",
"typings": "./index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"test": "jest",
"test:coverage": "jest --collectCoverage",
"type-check": "tsc -p tsconfig.json --noEmit",
"build": "./bin/build.sh",
"clean": "./bin/clean.sh",
"missing": "./bin/missing.sh",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"coveralls:win": "type ./coverage/lcov.info | node node_modules/.bin/coveralls",
"lint": "eslint **/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://Tokimon@github.com/Tokimon/vanillajs-browser-helpers.git"
},
"keywords": [
"javascript",
"helpers",
"find",
"event",
"scroll",
"css"
],
"bugs": {
"url": "https://github.com/Tokimon/vanillajs-browser-helpers/issues"
},
"homepage": "https://github.com/Tokimon/vanillajs-browser-helpers#readme",
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"coveralls": "^3.1.1",
"eslint": "^8.6.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.4.5",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"dependencies": {
"vanillajs-helpers": "^3.1.3"
}
}