-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 1.75 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
{
"name": "@riotjs/custom-elements",
"version": "9.0.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 <[email protected]> (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": "^15.3.0",
"@wdio/browser-runner": "^9.2.8",
"@wdio/cli": "^9.2.8",
"@wdio/mocha-framework": "^9.2.8",
"chai": "^5.1.2",
"eslint": "^8.55.0",
"eslint-config-riot": "^4.1.1",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"riot": "^9.4.3",
"rollup": "^4.24.3",
"serve": "^14.2.4",
"sinon": "^19.0.2",
"sinon-chai": "^4.0.0",
"start-server-and-test": "^2.0.8"
},
"peerDependencies": {
"riot": "^6.0.0 || ^7.0.0 || ^9.0.0"
},
"dependencies": {
"@riotjs/util": "^2.4.0"
}
}