-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 897 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
{
"name": "rabbitbird-es2015-kit",
"description": "Aiming to be the world's simplest setup for transpiling, linting and loading ES2015.",
"version": "1.0.0",
"author": "Ryan Blunden <ryan dot blunden at rabbitbird dot com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/ryan-blunden/rabbitbird-es2015-kit.git"
},
"scripts": {
"lint": "eslint es/**",
"transpile": "babel es --out-dir js",
"server": "http-server ./",
"start": "http-server ./",
"watcher": "forever bin/watcher.js"
},
"devDependencies": {
"babel-cli": "*",
"babel-plugin-transform-global-system-wrapper": "*",
"babel-eslint": "*",
"babel-plugin-transform-es2015-modules-systemjs": "*",
"babel-polyfill": "*",
"babel-preset-env": "*",
"eslint": "*",
"http-server": "*",
"node-watch": "*",
"forever": "*"
}
}