-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 845 Bytes
/
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
{
"name": "frontmatter-js",
"version": "1.0.3",
"description": "a very simple frontmatter parser",
"scripts": {
"build": "webpack -p",
"dry": "npm publish . --dry-run",
"test": "jest",
"preversion": "npm run test",
"version": "npm run build && git add dist/",
"postversion": "git push && git push --tags"
},
"main": "dist/frontmatter.min.js",
"files": [
"dist/frontmatter.min.js"
],
"author": "worc <curtis.s.mcallister@gmail.com>",
"homepage": "https://github.com/worc/frontmatter",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.6.0",
"jest": "^28.1.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
}
}