Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Side by Side Diff: appengine/config_service/ui/bower_components/web-component-tester/package.json

Issue 2923973003: Added base template for config ui. (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 {
2 "name": "web-component-tester",
3 "version": "6.0.0",
4 "--private-wct--": {
5 "client-side-version-range": "4 - 6 || ^6.0.0-prerelease.1"
6 },
7 "description": "web-component-tester makes testing your web components a breez e!",
8 "keywords": [
9 "browser",
10 "grunt",
11 "gruntplugin",
12 "gulp",
13 "polymer",
14 "test",
15 "testing",
16 "web component",
17 "web"
18 ],
19 "homepage": "https://github.com/Polymer/web-component-tester",
20 "bugs": "https://github.com/Polymer/web-component-tester/issues",
21 "license": "BSD-3-Clause",
22 "repository": {
23 "type": "git",
24 "url": "https://github.com/Polymer/web-component-tester.git"
25 },
26 "main": "runner.js",
27 "bin": {
28 "wct": "./bin/wct",
29 "wct-st": "./bin/wct-st"
30 },
31 "files": [
32 "bin/",
33 "data/",
34 "runner/",
35 "scripts/",
36 "tasks/",
37 ".bowerrc",
38 "bower.json",
39 "browser.js",
40 "browser.js.map",
41 "package.json",
42 "LICENSE",
43 "README.md",
44 "runner.js"
45 ],
46 "scripts": {
47 "lint": "gulp lint",
48 "build": "tsc && gulp build",
49 "test": "tsc && gulp test",
50 "prepublish": "gulp prepublish",
51 "test:watch": "watch 'gulp test:unit' runner/ browser/ bin/ test/ tasks/",
52 "format": "find runner test | grep '\\.js$\\|\\.ts$' | xargs ./node_modules/ .bin/clang-format --style=file -i"
53 },
54 "dependencies": {
55 "@types/body-parser": "0.0.33",
56 "@types/chai": "^3.4.34",
57 "@types/chalk": "^0.4.31",
58 "@types/express": "^4.0.33",
59 "@types/glob": "^5.0.30",
60 "@types/grunt": "^0.4.20",
61 "@types/gulp": "^3.8.32",
62 "@types/lodash": "^4.14.38",
63 "@types/mime": "0.0.29",
64 "@types/minimatch": "^2.0.29",
65 "@types/mocha": "^2.2.32",
66 "@types/multer": "0.0.32",
67 "@types/node": "4.0.30",
68 "@types/nomnom": "0.0.28",
69 "@types/semver": "^5.3.30",
70 "@types/sinon": "^1.16.31",
71 "@types/sinon-chai": "^2.7.27",
72 "@types/socket.io": "^1.4.27",
73 "accessibility-developer-tools": "^2.10.0",
74 "async": "^1.5.0",
75 "body-parser": "^1.14.2",
76 "chai": "^3.2.0",
77 "chalk": "^1.1.1",
78 "cleankill": "^1.0.0",
79 "express": "^4.8.5",
80 "findup-sync": "^0.4.3",
81 "glob": "^7.1.1",
82 "lodash": "^3.0.1",
83 "mocha": "^3.1.2",
84 "multer": "^1.1.0",
85 "nomnom": "^1.8.1",
86 "polyserve": "^0.19.0",
87 "promisify-node": "^0.4.0",
88 "resolve": "^1.0.0",
89 "semver": "^5.3.0",
90 "send": "^0.11.1",
91 "server-destroy": "^1.0.1",
92 "sinon": "^1.11.1",
93 "sinon-chai": "^2.6.0",
94 "socket.io": "^1.3.7",
95 "stacky": "^1.3.1",
96 "test-fixture": "PolymerElements/test-fixture",
97 "wd": "^1.0.0"
98 },
99 "optionalDependencies": {
100 "update-notifier": "^1.0.0",
101 "wct-local": "^2.0.15",
102 "wct-sauce": "^2.0.0-pre.1"
103 },
104 "devDependencies": {
105 "@types/express-serve-static-core": "^4.0.39",
106 "@types/rimraf": "0.0.28",
107 "bower": "^1.7.9",
108 "clang-format": "^1.0.43",
109 "depcheck": "^0.6.3",
110 "grunt": "^0.4.5",
111 "gulp": "^3.8.8",
112 "gulp-bower": "0.0.13",
113 "gulp-jshint": "^2.0.0",
114 "gulp-spawn-mocha": "^3.1.0",
115 "gulp-tslint": "^5.0.0",
116 "gulp-typescript": "^3.1.2",
117 "jshint": "^2.8.0",
118 "jshint-stylish": "^2.0.1",
119 "lazypipe": "^1.0.1",
120 "rimraf": "^2.5.4",
121 "rollup": "^0.25.1",
122 "run-sequence": "^1.0.1",
123 "tslint": "^3.10.2",
124 "typescript": "^2.1.4",
125 "watch": "^0.18.0"
126 },
127 "engines": {
128 "node": ">= 6.0"
129 }
130 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698