-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "metalsmith-medium",
"version": "0.0.0-semantic-released",
"description": "get last post from a medium user.",
"main": "lib/index.js",
"files": [
"lib",
"README.md"
],
"scripts": {
"prebuild": "rimraf lib",
"build": "babel --copy-files src/ -d lib/",
"watch": "babel -w src/ -d lib/",
"commit": "git-cz",
"test": "mocha -w --compilers js:babel-register",
"test:single": "mocha --compilers js:babel-register",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/wcastand/metalsmith-medium.git"
},
"keywords": [
"metalsmith",
"medium"
],
"author": "William Castandet <[email protected]> (https://github.com/wcastand)",
"license": "MIT",
"bugs": {
"url": "https://github.com/wcastand/metalsmith-medium/issues"
},
"homepage": "https://github.com/wcastand/metalsmith-medium#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"commitizen": "^2.8.4",
"cz-conventional-changelog": "^1.1.6",
"mocha": "^3.0.1",
"rimraf": "^2.5.4",
"semantic-release": "^4.3.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"request": "^2.74.0"
}
}