This repository was archived by the owner on May 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.47 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.47 KB
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
{
"name": "polymer-analyzer",
"version": "3.0.0-pre.21",
"description": "Static analysis for Web Components",
"homepage": "https://github.com/Polymer/polymer-analyzer",
"bugs": "https://github.com/Polymer/polymer-analyzer/issues",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/Polymer/polymer-analyzer.git"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"LICENSE",
"lib/",
"custom_typings/",
"bin/"
],
"scripts": {
"clean": "touch lib && rm -rf lib && mkdir lib",
"build": "gulp build --silent",
"release": "npm run compile",
"lint": "gulp lint",
"test": "npm run clean && npm run build && npm run lint && mocha",
"quicktest": "export QUICK_TESTS=true; npm run build && mocha",
"initBench": "if [ ! -d bower_components ]; then bower install -s -f PolymerElements/app-elements PolymerElements/iron-elements PolymerElements/gold-elements PolymerElements/paper-elements PolymerElements/neon-elements GoogleWebComponents/google-web-components ; fi",
"benchmark": "npm run build && npm run initBench && node --expose-gc lib/perf/parse-all-benchmark.js",
"test:watch": "tsc-then -- mocha -c",
"format": "find src test | grep '\\.js$\\|\\.ts$' | xargs clang-format --style=file -i",
"prepublishOnly": "tsc && npm test"
},
"devDependencies": {
"@types/chai": "^4.0.10",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^2.2.28",
"bower": "^1.7.9",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.3.0",
"clang-format": "=1.1.1",
"depcheck": "^0.6.3",
"fs-extra": "^0.30.0",
"gulp": "^3.9.1",
"gulp-eslint": "^2.0.0",
"gulp-mocha": "^4.3.0",
"gulp-newer": "^1.2.0",
"gulp-shell": "^0.5.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-tslint": "^7.0.1",
"gulp-typescript": "^2.13.4",
"knuth-shuffle": "^1.0.8",
"memory-streams": "^0.1.1",
"merge-stream": "^1.0.0",
"mocha": "^5.0.5",
"performance-now": "^2.1.0",
"run-sequence": "^1.2.0",
"sinon": "^1.17.4",
"source-map-support": "^0.4.2",
"temp": "^0.8.3",
"tsc-then": "^1.0.1",
"tslint": "^4.1.1",
"typescript": "^2.7.1",
"typescript-json-schema": "^0.21.0"
},
"dependencies": {
"@babel/generator": "^7.0.0-beta.42",
"@babel/traverse": "^7.0.0-beta.42",
"@babel/types": "^7.0.0-beta.42",
"@types/babel-generator": "^6.25.1",
"@types/babel-traverse": "^6.25.2",
"@types/babel-types": "^6.25.1",
"@types/babylon": "^6.16.2",
"@types/chai-subset": "^1.3.0",
"@types/chalk": "^0.4.30",
"@types/clone": "^0.1.30",
"@types/cssbeautify": "^0.3.1",
"@types/doctrine": "^0.0.1",
"@types/is-windows": "^0.2.0",
"@types/minimatch": "^3.0.1",
"@types/node": "^6.0.0",
"@types/parse5": "^2.2.34",
"@types/path-is-inside": "^1.0.0",
"@types/resolve": "0.0.6",
"@types/whatwg-url": "^6.4.0",
"babylon": "^7.0.0-beta.42",
"cancel-token": "^0.1.1",
"chalk": "^1.1.3",
"clone": "^2.0.0",
"cssbeautify": "^0.3.1",
"doctrine": "^2.0.2",
"dom5": "^3.0.0",
"indent": "0.0.2",
"is-windows": "^1.0.2",
"jsonschema": "^1.1.0",
"minimatch": "^3.0.4",
"parse5": "^4.0.0",
"path-is-inside": "^1.0.2",
"resolve": "^1.5.0",
"shady-css-parser": "^0.1.0",
"stable": "^0.1.6",
"strip-indent": "^2.0.0",
"vscode-uri": "^1.0.1",
"whatwg-url": "^6.4.0"
},
"engines": {
"node": ">=6"
}
}