-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.77 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.77 KB
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
{
"name": "@riotjs/custom-elements",
"version": "10.0.0-rc.1",
"description": "Simple API to create vanilla custom elements with riot",
"main": "index.js",
"module": "index.js",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"files": [
"index.cjs",
"index.js"
],
"scripts": {
"prepublishOnly": "npm run build && npm test",
"lint": "npx eslint src test.js rollup.config.js",
"build": "rollup -c",
"pretest": "npm run build",
"test": "npm run lint && npm run wdio",
"wdio": "start-server-and-test 'npx serve' 3000 'wdio run ./wdio.conf.js'"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/riot/custom-elements.git"
},
"nyc": {
"include": [
"./index.next.js"
]
},
"keywords": [
"es6",
"riot",
"custom elements",
"webcomponents",
"es2015"
],
"author": "Gianluca Guarini <gianluca.guarini@gmail.com> (http://gianlucaguarini.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/riot/custom-elements/issues"
},
"homepage": "https://github.com/riot/custom-elements#readme",
"devDependencies": {
"@riotjs/prettier-config": "^1.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@wdio/browser-runner": "^9.19.1",
"@wdio/cli": "^9.19.1",
"@wdio/mocha-framework": "^9.19.1",
"chai": "^6.0.1",
"eslint": "^9.33.0",
"eslint-config-riot": "^5.0.2",
"mocha": "^11.7.1",
"prettier": "^3.6.2",
"riot": "10.0.0",
"rollup": "^4.47.1",
"serve": "^14.2.4",
"sinon": "^21.0.0",
"sinon-chai": "^4.0.1",
"start-server-and-test": "^2.0.13"
},
"peerDependencies": {
"riot": "^6.0.0 || ^7.0.0 || ^9.0.0 || ^10.0.0"
},
"dependencies": {
"@riotjs/util": "^10.0.0"
}
}