This repository has been archived by the owner on Dec 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 128
/
package.json
111 lines (111 loc) · 3.25 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "polymer-cli",
"version": "1.7.0-pre.4",
"description": "A commandline tool for Polymer projects",
"main": "lib/polymer-cli.js",
"engines": {
"node": ">=6.0"
},
"bin": {
"polymer": "bin/polymer.js"
},
"scripts": {
"lint": "gulp lint",
"build": "gulp build",
"test": "gulp test lint",
"test:smoke": "gulp test",
"test:smoke-lint": "gulp test lint",
"test:integration": "gulp test:integration",
"format": "find src gulpfile.js \\( -iname '*.ts' -o -iname '*.js' \\) -not -path '*fixtures*' | xargs clang-format --style=file -i",
"test:watch": "tsc-then -- mocha -c --ui tdd lib/test/integration/*_test.js lib/test/unit/*_test.js lib/test/unit/*/*_test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Polymer/polymer-cli.git"
},
"author": "The Polymer Project Authors",
"license": "BSD-3-Clause",
"dependencies": {
"@types/chalk": "^0.4.31",
"@types/del": "^3.0.0",
"@types/findup-sync": "^0.3.29",
"@types/globby": "^6.1.0",
"@types/inquirer": "0.0.32",
"@types/merge-stream": "^1.0.28",
"@types/mz": "^0.0.31",
"@types/request": "2.0.3",
"@types/resolve": "0.0.4",
"@types/rimraf": "^0.0.28",
"@types/semver": "^5.3.30",
"@types/temp": "^0.8.28",
"@types/update-notifier": "^1.0.0",
"@types/vinyl": "^2.0.0",
"@types/vinyl-fs": "0.0.28",
"@types/yeoman-generator": "^1.0.0",
"bower": "1.8.2",
"bower-json": "^0.8.1",
"bower-logger": "^0.2.2",
"chalk": "^1.1.3",
"chokidar": "^1.7.0",
"command-line-args": "^3.0.0",
"command-line-commands": "^1.0.3",
"command-line-usage": "^3.0.1",
"del": "^3.0.0",
"findup-sync": "^0.4.2",
"github": "^7.2.1",
"globby": "^8.0.1",
"gunzip-maybe": "^1.3.1",
"inquirer": "^1.0.2",
"merge-stream": "^1.0.1",
"mz": "^2.6.0",
"plylog": "^0.4.0",
"polymer-analyzer": "^3.0.0-pre.18",
"polymer-build": "^3.0.0-pre.9",
"polymer-linter": "^3.0.0-pre.3",
"polymer-project-config": "^3.13.0",
"polyserve": "^0.27.0",
"request": "^2.72.0",
"rimraf": "^2.6.1",
"semver": "^5.3.0",
"tar-fs": "^1.12.0",
"temp": "^0.8.3",
"update-notifier": "^1.0.0",
"validate-element-name": "^2.1.1",
"vinyl": "^1.1.1",
"vinyl-fs": "^2.4.3",
"web-component-tester": "^6.6.0-pre.3",
"yeoman-environment": "^1.5.2",
"yeoman-generator": "^1.0.1"
},
"devDependencies": {
"@polymer/tools-common": "^1.0.1",
"@types/chokidar": "^1.7.3",
"@types/fs-extra": "^5.0.1",
"@types/mocha": "^2.2.44",
"@types/node": "=6.0.65",
"@types/sinon": "^4.0.0",
"@types/tmp": "^0.0.33",
"@types/yeoman-test": "^1.7.3",
"chai": "^3.5.0",
"clang-format": "=1.1.0",
"depcheck": "^0.6.3",
"fs-extra": "^5.0.0",
"gulp": "^3.9.1",
"gulp-spawn-mocha": "^3.1.0",
"gulp-tslint": "^7.0.1",
"gulp-typescript": "^3.0.0",
"istanbul": "^0.4",
"memory-streams": "^0.1.0",
"mocha": "^3.0",
"run-sequence": "^1.2.0",
"sinon": "^1.17.7",
"source-map-support": "^0.5.4",
"tmp": "0.0.31",
"tsc-then": "^1.0.1",
"tslint": "^4.0.2",
"typescript": "^2.2.0",
"vinyl-fs-fake": "^1.1.0",
"yeoman-assert": "^2.2.1",
"yeoman-test": "^1.1.0"
}
}