forked from Chalarangelo/markdown-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·57 lines (57 loc) · 1.11 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
{
"name": "markdown-builder",
"version": "0.8.9",
"description": "The next-gen markdown builder for node",
"main": "lib/index.js",
"repository": "https://github.com/flxwu/markdown-builder",
"author": "Felix Wu",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"flow-bin": "^0.77.0",
"jest": "^23.4.2"
},
"keywords": [
"markdown",
"builder",
"generator",
"package",
"node",
"md",
"parser"
],
"scripts": {
"build": "babel src/ -d lib/",
"test": "jest",
"flow": "flow check"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"transform": {
"^.+\\.js$": "babel-jest"
},
"globals": {
"NODE_ENV": "test"
},
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules",
"src/components",
"src/util"
]
},
"dependencies": {
"husky": "^1.0.0-rc.14"
},
"husky": {
"hooks": {
"pre-push": "yarn flow && yarn test"
}
}
}