forked from Polymer/polymer-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.82 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
{
"name": "polymer-cli",
"version": "0.16.0",
"description": "A commandline tool for Polymer projects",
"main": "lib/polymer-cli.js",
"engines": {
"node": ">=4.0"
},
"bin": {
"polymer": "bin/polymer.js"
},
"scripts": {
"lint": "gulp lint",
"init": "gulp init",
"build": "gulp build",
"test": "gulp test",
"prepublish": "gulp build-all && gulp test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Polymer/polymer-cli.git"
},
"author": "The Polymer Project Authors",
"license": "BSD-3-Clause",
"dependencies": {
"chalk": "^1.1.3",
"command-line-args": "^3.0.0",
"command-line-commands": "^1.0.3",
"command-line-usage": "^3.0.1",
"css-slam": "^1.1.0",
"dom5": "^1.3.1",
"findup": "^0.1.5",
"fs-extra": "^0.30.0",
"github": "^1.1.0",
"gulp-if": "^2.0.0",
"gunzip-maybe": "^1.3.1",
"html-minifier": "^3.0.1",
"inquirer": "^1.0.2",
"merge-stream": "^1.0.0",
"multipipe": "^0.3.0",
"plylog": "^0.4.0",
"polylint": "^2.10.0",
"polymer-build": "^0.4.1",
"polyserve": "^0.12.0",
"request": "^2.72.0",
"resolve": "^1.1.7",
"tar-fs": "^1.12.0",
"temp": "^0.8.3",
"uglify-js": "^2.7.0",
"update-notifier": "^1.0.0",
"vinyl": "^1.1.1",
"vinyl-fs": "^2.4.3",
"web-component-tester": "^4.2.0",
"yeoman-environment": "^1.5.2",
"yeoman-generator": "^0.23.3"
},
"devDependencies": {
"chai": "^3.5.0",
"depcheck": "^0.6.3",
"gulp": "^3.9.1",
"gulp-eslint": "^2.0.0",
"gulp-mocha": "^2.2.0",
"gulp-tslint": "^5.0.0",
"gulp-typescript": "^2.13.4",
"gulp-typings": "^2.0.0",
"run-sequence": "^1.2.0",
"sinon": "^1.17.4",
"tslint": "^3.10.2",
"vinyl-fs-fake": "^1.1.0",
"yeoman-assert": "^2.2.1",
"yeoman-test": "^1.1.0"
}
}