forked from popeindustries/inline-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.49 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
60
61
62
63
64
65
66
67
68
{
"name": "inline-source",
"description": "Inline all flagged js, css, image source files",
"version": "6.1.10",
"author": "popeindustries <[email protected]>",
"keywords": [
"inline",
"html",
"js",
"css",
"svg"
],
"dependencies": {
"csso": "~3.5.1",
"htmlparser2": "^3.10.1",
"superagent": "~5.0.5",
"svgo": "~1.2.2",
"terser": "~4.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.0.1",
"handlebars": "^4.1.2",
"husky": "^2.2.0",
"lint-staged": "^8.1.6",
"memory-fs": "*",
"mocha": "^6.1.4",
"nock": "^10.0.6",
"prettier": "^1.17.0"
},
"main": "index.js",
"scripts": {
"format": "prettier --write './{lib,test}/**/*.{js,json,css}'",
"lint": "eslint './{lib,test}/**/*.js'",
"precommit": "lint-staged",
"test": "NODE_ENV=test mocha --reporter spec --bail"
},
"engines": {
"node": ">=8"
},
"lint-staged": {
"linters": {
"*.js": [
"prettier --write",
"eslint",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"ignore": [
"*.min.js"
]
},
"prettier": {
"arrowParens": "always",
"htmlWhitespaceSensitivity": "strict",
"printWidth": 80,
"singleQuote": true
},
"repository": "git://github.com/popeindustries/inline-source.git",
"readmeFilename": "README.md",
"license": "MIT"
}