-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 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
{
"name": "markup-builder",
"version": "3.3.0",
"description": "Markup and HTML builder tools",
"main": "./lib/index.js",
"scripts": {
"prettier": "prettier r --config .prettierrc --write \"**/*.js*\"",
"pretty-quick": "pretty-quick --staged",
"lintfix": "eslint \"**/*.js\" --fix",
"lint": "eslint \"**/*.js\"",
"lintstaged": "./node_modules/.bin/lint-staged",
"test": "npm run lintfix && node ./node_modules/mocha/bin/mocha --exit",
"build": "npm run test && webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peerquery/markup-builder.git"
},
"keywords": [
"markup",
"markdown",
"html",
"util"
],
"author": "dzivenu",
"license": "MIT",
"bugs": {
"url": "https://github.com/peerquery/markup-builder/issues"
},
"homepage": "https://github.com/peerquery/markup-builder#readme",
"dependencies": {
"dom-parser": "^0.1.5",
"markup-tools": "^2.7.0",
"remarkable": "^1.7.1",
"xss": "^1.0.3"
},
"lint-staged": {
"*.js": [
"npm run lintfix",
"git add"
]
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.6.1",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.1.1",
"lint-staged": "^7.3.0",
"mocha": "^5.2.0",
"prettier": "^1.14.3",
"pretty-quick": "^1.7.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.3"
},
"directories": {
"lib": "lib"
}
}