-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.73 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
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
69
70
71
{
"name": "html-setters-polyfill",
"version": "0.1.1",
"description": "Polyfill for new HTML setters (appendHTML, streamHTML..etc. and unsafe variants)",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"type": "module",
"typings": "types.d.ts",
"main": "index.js",
"files": [
"index.js",
"index.min.js",
"types.d.ts",
"dist",
"src"
],
"scripts": {
"build": "uglifyjs index.js -o index.min.js -c -m",
"test": "run-p test:server test:unit",
"test:server": "node tests/server/server.js",
"test:unit": "wdio --suite=unit"
},
"keywords": [
"setHTML",
"setHTMLUnsafe",
"appendHTML",
"appendHTMLUnsafe",
"prependHTML",
"prependHTMLUnsafe",
"streamHTML",
"streamHTMLUnsafe",
"streamAppendHTML",
"streamAppendHTMLUnsafe",
"streamPrependHTML",
"streamPrependHTMLUnsafe",
"beforeHTML",
"beforeHTMLUnsafe",
"afterHTML",
"afterHTMLUnsafe",
"replaceWithHTML",
"replaceWithHTMLUnsafe",
"streamReplaceWithHTML",
"streamReplaceWithHTMLUnsafe",
"streamBeforeHTML",
"streamBeforeHTMLUnsafe",
"streamAfterHTML",
"streamAfterHTMLUnsafe"
],
"author": {
"name": "Noam Rosenthal",
"email": "nrosenthal@google.com"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git@github.com:GoogleChromeLabs/html-setters-polyfill.git"
},
"bugs": {
"url": "https://github.com/GoogleChromeLabs/html-setters-polyfill/issues"
},
"devDependencies": {
"@wdio/cli": "^9.23.0",
"@wdio/local-runner": "^9.23.0",
"@wdio/mocha-framework": "^9.23.0",
"@wdio/spec-reporter": "^9.20.0",
"fs-extra": "^11.3.4",
"uglify-js": "^3.17.4",
"webdriverio": "^9.24.0"
}
}