-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 961 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 961 Bytes
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
{
"name": "markup-tools",
"version": "2.9.0",
"description": "Utility to format markup",
"main": "./lib/index.js",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peerquery/markup-tools.git"
},
"scripts": {
"lintfix": "eslint \"**/*.js\" --fix",
"lint": "eslint \"**/*.js\"",
"test": "npm run lintfix && node ./node_modules/mocha/bin/mocha --exit",
"build": "npm run test && webpack"
},
"bugs": {
"url": "https://github.com/peerquery/markup-tools/issues"
},
"homepage": "https://github.com/peerquery/markup-tools#readme",
"keywords": [
"image",
"url",
"node"
],
"author": "dzivenu",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.6.1",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.1.2",
"mocha": "^5.2.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"dependencies": {}
}