This repository has been archived by the owner on Sep 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
97 lines (97 loc) · 3.13 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
{
"name": "polymer-build",
"version": "3.0.0-pre.9",
"description": "A library of Gulp build tasks",
"main": "lib/polymer-build.js",
"typings": "lib/polymer-build.d.ts",
"scripts": {
"lint": "gulp lint",
"build": "gulp build",
"test": "gulp lint test",
"test:watch": "tsc-then -- mocha -c",
"prepublishOnly": "npm test",
"format": "find src/ -iname '*.ts' -o -iname '*.js' | xargs clang-format --style=file -i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Polymer/polymer-build.git"
},
"author": "The Polymer Project Authors",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Polymer/polymer-build/issues"
},
"homepage": "https://github.com/Polymer/polymer-build#readme",
"dependencies": {
"@babel/core": "^7.0.0-beta.42",
"@babel/plugin-external-helpers": "^7.0.0-beta.42",
"@babel/plugin-proposal-async-generator-functions": "^7.0.0-beta.42",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.42",
"@babel/plugin-syntax-async-generators": "^7.0.0-beta.42",
"@babel/plugin-syntax-dynamic-import": "^7.0.0-beta.43",
"@babel/plugin-syntax-import-meta": "^7.0.0-beta.42",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0-beta.42",
"@babel/plugin-transform-async-to-generator": "^7.0.0-beta.42",
"@babel/plugin-transform-exponentiation-operator": "^7.0.0-beta.42",
"@babel/plugin-transform-modules-amd": "^7.0.0-beta.42",
"@babel/preset-es2015": "^7.0.0-beta.42",
"@babel/traverse": "^7.0.0-beta.42",
"@types/gulp-if": "0.0.33",
"@types/html-minifier": "^3.5.1",
"@types/is-windows": "^0.2.0",
"@types/mz": "0.0.31",
"@types/node": "^6.0.77",
"@types/parse5": "^2.2.34",
"@types/resolve": "0.0.7",
"@types/uuid": "^3.4.3",
"@types/vinyl": "^2.0.0",
"@types/vinyl-fs": "^2.4.8",
"babel-preset-minify": "=0.4.0-alpha.caaefb4c",
"css-slam": "^2.1.0",
"dom5": "^3.0.0",
"gulp-if": "^2.0.2",
"html-minifier": "^3.5.10",
"matcher": "^1.1.0",
"multipipe": "^1.0.2",
"mz": "^2.6.0",
"parse5": "^4.0.0",
"plylog": "^0.5.0",
"polymer-analyzer": "=3.0.0-pre.21",
"polymer-bundler": "^4.0.0-pre.4",
"polymer-project-config": "^3.13.0",
"stream": "0.0.2",
"sw-precache": "^5.1.1",
"uuid": "^3.2.1",
"vinyl": "^1.2.0",
"vinyl-fs": "^2.4.4"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/fs-extra": "0.0.37",
"@types/mocha": "^2.2.33",
"@types/sinon": "^1.16.33",
"chai": "^4.1.2",
"clang-format": "^1.0.52",
"depcheck": "^0.6.3",
"fs-extra": "^5.0.0",
"gulp": "^3.9.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-spawn-mocha": "^3.1.0",
"gulp-tslint": "^7.1.0",
"gulp-typescript": "^3.1.4",
"gulp-typings": "^2.0.0",
"istanbul": "^0.4.5",
"merge-stream": "^1.0.1",
"mocha": "^3.2.0",
"requirejs": "^2.3.5",
"run-sequence": "^1.2.0",
"sinon": "^1.17.6",
"source-map-support": "^0.5.4",
"strip-indent": "^2.0.0",
"temp": "^0.8.3",
"tsc-then": "^1.1.0",
"tslint": "^5.2.0",
"typescript": "^2.3.2",
"vinyl-fs-fake": "^1.1.0"
}
}