-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.01 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
{
"name": "hubpress-plugin-github",
"version": "0.1.2",
"description": "Github backend for HubPress",
"main": "lib/githubPlugin.js",
"scripts": {
"compile": "babel --presets es2015,stage-2 -d lib/ src/ && mkdir -p lib/components && cp src/components/*.vue lib/components ",
"prepublish": "npm run compile",
"test": "npm run compile && mocha --compilers js:babel-core/register"
},
"author": "Anthonny Quérouil <[email protected]> (http://anthonnyquerouil.fr)",
"license": "MIT",
"files": [
"lib"
],
"dependencies": {
"github-api": "github:anthonny/github#d1ce4c0",
"hubpress-core-slugify": "github:hubpress/hubpress-core-slugify#cfe920c",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.6.1",
"platform": "^1.3.1",
"q": "^1.4.1"
},
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-core": "^6.0.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"uglify-js": "^2.6.2"
}
}