-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1000 Bytes
/
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
{
"name": "reshape-custom-elements",
"description": "transform custom element names into class names",
"version": "1.0.0",
"author": "Jeff Escalante",
"types": "index.d.ts",
"ava": {
"verbose": "true"
},
"bugs": "https://github.com/reshape/custom-elements/issues",
"dependencies": {
"reshape-plugin-util": "^0.2.1"
},
"devDependencies": {
"ava": "^1.4.1",
"coveralls": "^3.0.3",
"nyc": "^14.1.1",
"prettier": "^1.17.1",
"pretty-quick": "^1.10.0",
"reshape": "^1.0.1"
},
"homepage": "https://github.com/reshape/custom-elements",
"keywords": [
"custom-elements",
"html",
"reshape-plugin"
],
"license": "MIT",
"main": "lib",
"repository": "https://github.com/reshape/custom-elements",
"scripts": {
"coverage": "nyc ava && nyc report --reporter=html && open ./coverage/index.html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "pretty-quick",
"test": "npm run lint && nyc ava"
}
}