-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.31 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
{
"name": "md2fs",
"version": "1.0.0",
"description": "cli tool that converts a single markdown file to a folder and file structure",
"main": "index.js",
"scripts": {
"test": "yarn run cypress open",
"prettier": "prettier --no-config --write './src/**/*.{ts,js,css,json}'",
"babel": "babel src -d lib",
"build": "npm run prettier && npm run babel",
"watch": "onchange 'src/**/*.js' -- npm run watch:parse",
"parse": "node test.js",
"watch:parse": "npm run babel -s && npm run parse -s",
"dev": "npm run babel && npm run parse",
"prettyIndex": "prettier --no-config --write './index.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/theClubhouse-Augusta/md2fs"
},
"author": "thec_admin",
"license": "ISC",
"bugs": {
"url": "https://github.com/theClubhouse-Augusta/md2fs/issues"
},
"homepage": "https://github.com/theClubhouse-Augusta/md2fs#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-loader": "^8.0.6",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cypress": "^3.3.0",
"onchange": "^5.2.0",
"prettier": "1.17.1"
},
"dependencies": {}
}