-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.41 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
{
"name": "markedly",
"description": "Turn markdown directories into JSON",
"version": "0.5.0",
"repository": "https://github.com/lukemorton/markedly",
"license": "MIT",
"dependencies": {
"date-fns": "^1.22.0",
"front-matter": "^2.2.0",
"fs-extra": "^4.0.2",
"glob": "^7.1.2",
"lodash.partial": "^4.2.1",
"lodash.sortby": "^4.7.0",
"marked": "^0.8.0",
"striptags": "^2.1.1"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@babel/runtime": "^7.7.7",
"jest": "^24.9.0",
"standard": "^14.3.1"
},
"engines": {
"node": ">=12.0.0"
},
"main": "dist/lib/markedly.js",
"bin": {
"markedly": "dist/bin/markedly.js"
},
"scripts": {
"prepare": "npm run prepare:bin && npm run prepare:src",
"prepare:bin": "babel bin/ -d dist/bin/ --ignore 'src/**/*.test.js'",
"prepare:src": "babel src/ -d dist/lib/ --ignore 'src/**/*.test.js'",
"test": "standard && jest",
"fix": "standard --fix"
},
"babel": {
"plugins": [
"@babel/plugin-transform-runtime"
],
"presets": [
"@babel/preset-env"
]
},
"jest": {
"watchPathIgnorePatterns": [
"<rootDir>/tmp/"
]
},
"standard": {
"globals": [
"jest",
"describe",
"it",
"expect",
"beforeEach",
"afterEach"
]
}
}