forked from w3c/trusted-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.4 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
69
70
71
72
73
74
{
"name": "trusted-types",
"version": "2.0.0",
"description": "Polyfill for the Trusted Types",
"main": "build/cjs/trustedtypes.module.js",
"module": "build/esm/trustedtypes.module.js",
"directories": {
"test": "tests"
},
"contributors": [
"Krzysztof Kotowicz <[email protected]>",
"Sebastian Lekies <[email protected]>"
],
"scripts": {
"lint": "eslint src/ tests/",
"fix": "eslint --fix src/ tests/",
"test": "karma start --single-run",
"test:localonly": "karma start --single-run --browsers ChromeHeadless,FirefoxHeadlessDev",
"karma": "karma start --browsers ChromeHeadless",
"karma:firefox": "karma start --browsers Firefox",
"build": "npm-run-all --parallel build:cjs build:esm build:dist-es5 build:dist-es6 --sequential sizereport",
"build:cjs": "rollup --file build/cjs/trustedtypes.module.js --format cjs --input src/polyfill/module.js",
"build:esm": "rollup --file build/esm/trustedtypes.module.js --format esm --input src/polyfill/module.js",
"build:dist-es5": "gulp es5",
"build:dist-es6": "gulp es6",
"spec": "bikeshed --die-on=link-error spec spec/index.bs build/index.html",
"spec:watch": "bikeshed watch spec/index.bs build/index.html",
"sizereport": "gulp sizereport",
"add_build": "git add ./dist/"
},
"author": "Google Inc.",
"license": "W3C-20150513",
"repository": {
"type": "git",
"url": "https://github.com/w3c/trusted-types.git"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"babelify": "^10.0.0",
"browserify": "^16.3.0",
"eslint": "^5.16.0",
"eslint-config-google": "^0.12.0",
"eslint-plugin-jasmine": "^2.10.1",
"google-closure-compiler": "^20220104.0.0",
"gulp": "^4.0.2",
"gulp-sizereport": "^1.2.1",
"gulp-sourcemaps": "^2.6.5",
"jasmine": "^3.4.0",
"jasmine-core": "^3.4.0",
"karma": "^4.2.0",
"karma-browserify": "^6.1.0",
"karma-browserstack-launcher": "^1.5.1",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^2.0.1",
"natives": "^1.1.6",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"rollup": "^2.40.0",
"watchify": "^3.11.1"
},
"dependencies": {},
"files": [
"build",
"dist",
"externs/externs.js",
"package.json",
"package-lock.json",
"LICENSE.md",
"README.md"
]
}