-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 2.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
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
{
"name": "@riotjs/util",
"version": "2.5.0",
"description": "Riot.js util functions",
"main": "index.cjs",
"module": "index.js",
"type": "module",
"scripts": {
"prepublishOnly": "npm test && npm run build",
"lint": "npx prettier -c . && eslint *.js",
"build": "find . -name '*.js' -not -name '*.spec.js' -not -name 'rollup.config.js' -maxdepth 1 | xargs rollup -c rollup.config.js",
"test": "npm run lint && mocha -r jsdom-global/register *.spec.js"
},
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs"
},
"./dom": {
"import": "./dom.js",
"require": "./dom.cjs"
},
"./functions": {
"import": "./functions.js",
"require": "./functions.cjs"
},
"./constants": {
"import": "./constants.js",
"require": "./constants.cjs"
},
"./strings": {
"import": "./strings.js",
"require": "./strings.cjs"
},
"./objects": {
"import": "./objects.js",
"require": "./objects.cjs"
},
"./checks": {
"import": "./checks.js",
"require": "./checks.cjs"
},
"./expression-types": {
"import": "./expression-types.js",
"require": "./expression-types.cjs"
},
"./binding-types": {
"import": "./binding-types.js",
"require": "./binding-types.cjs"
},
"./misc": {
"import": "./misc.js",
"require": "./misc.cjs"
}
},
"files": [
"index.js",
"dom.js",
"functions.js",
"constants.js",
"strings.js",
"objects.js",
"checks.js",
"expression-types.js",
"binding-types.js",
"misc.js",
"index.cjs",
"dom.cjs",
"functions.cjs",
"constants.cjs",
"strings.cjs",
"objects.cjs",
"checks.cjs",
"expression-types.cjs",
"binding-types.cjs",
"misc.cjs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GianlucaGuarini/@riotjs/util.git"
},
"keywords": [
"Riot.js",
"shared",
"Riot util"
],
"author": "Gianluca Guarini <[email protected]> (https://gianlucaguarini.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/GianlucaGuarini/@riotjs/util/issues"
},
"homepage": "https://github.com/GianlucaGuarini/@riotjs/util#readme",
"devDependencies": {
"@riotjs/prettier-config": "^1.1.0",
"chai": "^5.2.0",
"eslint": "^8.48.0",
"eslint-config-riot": "^4.1.1",
"jsdom": "26.0.0",
"jsdom-global": "3.0.2",
"mocha": "^11.1.0",
"prettier": "^3.5.2",
"rollup": "^4.34.8"
}
}