forked from ulkajs-zz/ulka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
{
"name": "ulka",
"version": "0.4.1-rc.2",
"description": "Ulka - static site generator",
"main": "./src/index.js",
"bin": {
"ulka": "bin/index.js"
},
"scripts": {
"test": "jest",
"eslint": "eslint .",
"prettier": "prettier --write \"**/*.js\"",
"lint-staged": "lint-staged",
"prepublishOnly": "npm run eslint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ulkajs/ulka.git"
},
"author": "Roshan Acharya",
"license": "MIT",
"bugs": {
"url": "https://github.com/ulkajs/ulka/issues"
},
"homepage": "https://github.com/ulkajs/ulka#readme",
"dependencies": {
"better-opn": "^2.0.0",
"chokidar": "^3.4.1",
"colors": "^1.4.0",
"commander": "^5.1.0",
"front-matter": "^4.0.2",
"portfinder": "^1.0.27",
"remarkable": "^2.0.1",
"ulka-parser": "^0.2.8",
"ws": "^7.3.1"
},
"devDependencies": {
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"jest": "^26.2.2",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
},
"lint-staged": {
"*.{js}": "eslint --cache --fix"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged && npm run test"
}
}
}