-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.52 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
55
{
"name": "metalsmith-revision",
"version": "0.0.4",
"description": "Compile only the modified files with metalsmith (compatible with metalsmith-layouts",
"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": "git+https://github.com/wcastand/metalsmith-revision.git"
},
"keywords": [
"metalsmith",
"changed"
],
"author": "William Castandet <wcastand@gmail.com> (https://github.com/wcastand)",
"license": "MIT",
"bugs": {
"url": "https://github.com/wcastand/metalsmith-revision/issues"
},
"homepage": "https://github.com/wcastand/metalsmith-revision#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": {
"crypto": "0.0.3",
"recursive-readdir": "^2.0.0"
}
}