-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.25 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
{
"name": "@hdsydsvenskan/dom-utils",
"version": "1.0.0",
"license": "MIT",
"description": "Basic small typed DOM helpers that aids in the creation of vanilla JS code",
"author": "HD-Sydsvenskan (https://www.sydsvenskan.se/)",
"homepage": "https://github.com/sydsvenskan/js-dom-utils",
"repository": {
"type": "git",
"url": "git://github.com/sydsvenskan/js-dom-utils.git"
},
"scripts": {
"build:0": "run-s clean",
"build:1-declaration": "tsc -p declaration.tsconfig.json",
"build": "run-s build:*",
"check:dependency-check": "dependency-check *.js 'modules/**/*.js' --no-dev --detective precinct -i @types/*",
"check:eslint": "eslint .",
"check:installed-check": "installed-check -i eslint",
"check:readme": "documentation readme index.js -s \"Methods and types\" --shallow --markdown-toc-max-depth 2 --diff-only",
"check:typescript": "tsc",
"check": "run-s clean && run-p check:*",
"clean:declarations": "rm -rf $(find . -maxdepth 2 -type f -name '*.d.ts' ! -name 'advanced-types.d.ts')",
"clean": "run-p clean:*",
"prepublishOnly": "run-s build",
"test:tsd": "tsd",
"test-checkless": "run-s build test:*",
"test": "run-s check build test:* clean",
"update-readme": "documentation readme index.js -s \"Methods and types\" --shallow --markdown-toc-max-depth 2"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"engines": {
"node": ">=12.0.0"
},
"sideEffects": false,
"main": "index.js",
"types": "index.d.ts",
"devDependencies": {
"@hdsydsvenskan/eslint-config-hds-browser": "^14.0.1",
"@hdsydsvenskan/eslint-config-hds-core": "^2.0.1",
"dependency-check": "^4.1.0",
"documentation": "^13.0.2",
"eslint": "^6.7.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-compat": "^3.3.0",
"eslint-plugin-es": "^3.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^24.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-unicorn": "^19.0.1",
"husky": "^4.2.5",
"installed-check": "^3.0.0",
"npm-run-all": "^4.1.5",
"precinct": "^6.1.2",
"tsd": "^0.13.1",
"typescript": "^3.8.3"
},
"dependencies": {}
}