forked from riot/custom-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.55 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.55 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
{
"name": "@riotjs/custom-elements",
"version": "4.0.0",
"description": "Simple API to create vanilla custom elements with riot",
"main": "index.js",
"jsnext:main": "index.next.js",
"module": "index.next.js",
"scripts": {
"prepare": "npm i --no-save riot@4",
"prepublishOnly": "npm run build && npm test",
"lint": "npx eslint index.next.js test.js rollup.config.js",
"build": "rollup -c",
"pretest": "npm run build",
"test-debug": "karma start --browsers Chrome --single-run 0",
"test": "npm run lint && npx karma start karma.conf.js"
},
"files": [
"index.js",
"index.next.js"
],
"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": {
"chai": "^4.2.0",
"eslint": "^5.15.1",
"eslint-config-riot": "^2.0.0",
"karma": "^4.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-rollup-preprocessor": "^7.0.0",
"mocha": "^6.0.2",
"rollup": "^1.6.0",
"rollup-plugin-node-resolve": "^4.0.1",
"sinon": "^7.2.7",
"sinon-chai": "^3.3.0"
},
"peerDependencies": {
"riot": "^4.0.0"
}
}