-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.12 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
{
"name": "charla-relampago-mithril",
"version": "1.0.0",
"description": "Charla relámpago sobre Mithril",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run watch-js & npm run serve",
"watch-js": "watchify example/src/index.js -do example/dist/bundle.js -t [ babelify --presets [ es2015 stage-0 ] ]",
"serve": "browser-sync start --server example --files example/dist/bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LaPlataDev/charla-relampago-mithril.git"
},
"keywords": [
"mithril",
"charla"
],
"author": "Martín Acosta <[email protected]>",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/LaPlataDev/charla-relampago-mithril/issues"
},
"homepage": "https://github.com/LaPlataDev/charla-relampago-mithril#readme",
"devDependencies": {
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"babelify": "^7.2.0",
"browser-sync": "^2.10.0",
"browserify": "^12.0.1",
"watchify": "^3.6.1"
},
"dependencies": {
"mithril": "^0.2.0"
}
}