-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.33 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.33 KB
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
{
"name": "inline-scripts",
"version": "1.7.4",
"description": "Inline <script> tags in HTML files.",
"main": "src/index",
"scripts": {
"test-inline-script-tags": "inline-script-tags test/testInlineScriptTags/index.html index.html; cat index.html",
"test-inline-stylesheets": "inline-stylesheets test/testInlineStylesheets/index.html index.html; cat index.html",
"test-inline-images": "inline-images test/testInlineImages/index.html index.html; cat index.html",
"test-inline-requires": "inline-requires test/testInlineRequires/main.js temp.js; cat temp.js; echo '\n'; node temp.js",
"test-inline-requires-2": "inline-requires test/testInlineRequires/nested/main2.js temp.js; cat temp.js; echo '\n'; node temp.js",
"test-inline-environment-variables": "PORT=3000 inline-environment-variables test/testInlineEnvironmentVariables/main.js temp.js; cat temp.js",
"postversion": "git push && npm publish"
},
"bin": {
"inline-script-tags": "src/cli/inlineScriptTags.js",
"inline-stylesheets": "src/cli/inlineStylesheets.js",
"inline-images": "src/cli/inlineImages.js",
"inline-requires": "src/cli/inlineRequires.js",
"inline-environment-variables": "src/cli/inlineEnvironmentVariables.js"
},
"keywords": [
"html",
"inline",
"js",
"script"
],
"author": "mahhov1",
"license": "ISC"
}