-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "ulka-parser",
"version": "0.4.1",
"description": "Templating engine for ulka static site generator",
"main": "./src/index.js",
"scripts": {
"test": "jest",
"eslint": "eslint .",
"prettier": "prettier \"**/*.js\"",
"prettier:fix": "prettier --write \"**/*.js\"",
"eslint:fix": "eslint . --fix",
"lint-staged": "lint-staged",
"prepublishOnly": "npm run eslint && npm test"
},
"bin": {
"ulka-parser": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ulkajs/ulka-parser.git"
},
"author": "Roshan Acharya",
"license": "MIT",
"bugs": {
"url": "https://github.com/ulkajs/ulka-parser/issues"
},
"homepage": "https://github.com/ulkajs/ulka-parser#readme",
"devDependencies": {
"@types/jest": "^26.0.14",
"eslint": "^7.10.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.5.2",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2"
}
}