forked from Polymer/polymer-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.79 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
{
"name": "polymer-build",
"version": "1.2.1",
"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 test",
"prepublish": "gulp lint && gulp 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": {
"@types/node": "^4.2.3",
"@types/parse5": "^2.2.32",
"@types/vinyl": "^2.0.0",
"@types/vinyl-fs": "0.0.28",
"dom5": "^2.2.0",
"multipipe": "^1.0.2",
"parse5": "^2.2.2",
"plylog": "^0.5.0",
"polymer-analyzer": "2.0.0-alpha.40",
"polymer-bundler": "2.0.0-pre.14",
"polymer-project-config": "^2.0.0",
"sw-precache": "^4.2.0",
"vinyl": "^1.1.1",
"vinyl-fs": "^2.4.3"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/fs-extra": "0.0.37",
"@types/mocha": "^2.2.33",
"@types/sinon": "^1.16.33",
"chai": "^3.5.0",
"clang-format": "=1.0.45",
"del": "^2.2.1",
"depcheck": "^0.6.3",
"fs-extra": "^2.0.0",
"gulp": "^3.9.1",
"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",
"run-sequence": "^1.2.0",
"sinon": "^1.17.6",
"temp": "^0.8.3",
"tslint": "^4.4.2",
"typescript": "^2.2.0",
"vinyl-fs-fake": "^1.1.0"
}
}