-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.68 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "filestojson",
"version": "1.0.2",
"description": "Static data generator based on static files",
"main": "lib/index.js",
"scripts": {
"filestojson": "./lib/cli.js ./examples/config.js",
"compile": "babel src --out-dir lib",
"prepublish": "npm run compile",
"test": "jest --watch --verbose",
"examples": "http-server ./examples & open http://127.0.0.1:8080",
"deploy": "touch ./.nojekyll && gh-pages-deploy",
"clean-source": "rimraf README.md lib src tests examples .babelrc .editorconfig .gitignore .npmignore LICENSE package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bernardodiasc/filestojson.git"
},
"keywords": [
"cms",
"static-files",
"static-database",
"nodejs",
"json",
"javascript",
"markdown",
"frontmatter"
],
"author": "Bernardo Dias <bernardodiasdacruz@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bernardodiasc/filestojson/issues"
},
"homepage": "https://github.com/bernardodiasc/filestojson#readme",
"bin": {
"filestojson": "./lib/cli.js"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"front-matter": "^2.1.2",
"fs-extra": "^4.0.1",
"joi": "^10.6.0",
"meow": "^3.7.0",
"png-js": "^0.1.1"
},
"devDependencies": {
"jest": "^20.0.4",
"gh-pages-deploy": "^0.4.2",
"rimraf": "^2.6.1"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/examples/data.json"
]
},
"gh-pages-deploy": {
"staticpath": "examples",
"prep": [
"compile",
"filestojson"
],
"post": [
"clean-source"
],
"noprompt": false
}
}