-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1017 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1017 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
29
30
31
32
33
34
35
36
37
38
{
"name": "caniuse-component",
"version": "0.1.5",
"description": "Up-to-date caniuse.com data for your slides",
"main": "./scripts.js",
"scripts": {
"js": "watchify src/scripts.js -t babelify --outfile ./scripts.js",
"compile-js": "babel src/scripts.js --out-file ./scripts.js",
"styles": "node-sass -w src/ -o ./ --output-style compressed",
"dev": "npm run js & npm run styles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/una/caniuse-component.git"
},
"keywords": [
"reveal.js",
"presentation",
"caniuse",
"plugin"
],
"author": "Una Kravets",
"license": "MIT",
"bugs": {
"url": "https://github.com/una/caniuse-component/issues"
},
"homepage": "https://github.com/una/caniuse-component#readme",
"dependencies": {
"caniuse-api": "^2.0.0",
"reveal.js": "^3.4.1"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-preset-es2015": "^6.24.0",
"babelify": "^8.0.0",
"watchify": "^3.9.0"
}
}