-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
69 lines (69 loc) · 1.5 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
{
"name": "select-dom",
"version": "5.1.0",
"description": "Extra lightweight DOM selector helper",
"keywords": [
"alternative",
"css",
"dom",
"elements",
"jquery",
"querySelector",
"querySelectorAll",
"selector"
],
"repository": "fregante/select-dom",
"license": "MIT",
"author": "Federico Brigante <[email protected]> (bfred.it)",
"files": [
"index.js",
"index.d.ts"
],
"module": "index.js",
"scripts": {
"build": "tsc",
"prepublish-only": "tsc",
"test": "tsc && tsd && xo && browserify -p esmify test.js | tape-run",
"watch": "tsc --watch"
},
"xo": {
"envs": [
"browser"
],
"extensions": [
"ts"
],
"overrides": [
{
"files": "**/*.ts",
"extends": "xo-typescript",
"parserOptions": {
"project": "./tsconfig.xo.json"
},
"rules": {
"@typescript-eslint/prefer-for-of": "off"
}
}
],
"rules": {
"valid-jsdoc": "off",
"prefer-spread": "off",
"prefer-arrow-callback": "off",
"unicorn/no-for-loop": "off"
}
},
"devDependencies": {
"@sindresorhus/tsconfig": "^0.6.0",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"browserify": "^16.5.0",
"eslint-config-xo-typescript": "^0.23.0",
"esmify": "^2.1.1",
"tape": "^4.11.0",
"tape-run": "^6.0.1",
"tsd": "^0.11.0",
"typescript": "^3.7.3",
"xo": "^0.25.3"
},
"type": "module"
}