-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 821 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 821 Bytes
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
{
"name": "css-toggle-component",
"version": "1.0.4",
"description": "Pure CSS Toggle Web Component",
"main": "index.js",
"repository": "https://github.com/rajasegar/css-toggle-component",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "parcel public/index.html",
"build": "parcel build public/index.html --public-url /css-toggle-component/",
"deploy": "npm version patch && git push && git push --tags && npm publish",
"publish-docs": "scripts/publish-docs"
},
"keywords": [
"csstoggle",
"toggle",
"webcomponents"
],
"author": "Rajasegar Chandran",
"license": "MIT",
"dependencies": {
"babel-plugin-transform-custom-element-classes": "^0.1.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"cssnano": "^4.1.4"
}
}