-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
{
"name": "gulp-inline-source-html",
"version": "1.0.3",
"description": "Inlines flagged js, css, and img sources in html with inline-source",
"main": "dist/index.js",
"module": "dist/index.es.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"pretest": "rollup -c",
"build": "rm -rf dist && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/exuanbo/gulp-inline-source-html.git"
},
"keywords": [
"gulpplugin",
"gulp",
"gulp-inline-source",
"inline-source",
"html",
"js",
"css",
"svg"
],
"author": {
"name": "exuanbo",
"email": "exuanbo@protonmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/exuanbo/gulp-inline-source-html/issues"
},
"homepage": "https://github.com/exuanbo/gulp-inline-source-html#readme",
"dependencies": {
"inline-source": "^7.2.0",
"plugin-error": "^1.0.1",
"through2": "^4.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "16.0.0",
"chai": "4.2.0",
"eslint": "7.18.0",
"eslint-config-prettier": "6.15.0",
"eslint-config-prettier-standard": "3.0.1",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.1.0",
"mocha": "8.2.1",
"prettier": "2.2.1",
"prettier-config-standard": "1.0.1",
"rollup": "2.37.1",
"vinyl": "2.2.1"
}
}