This repository has been archived by the owner on Sep 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
63 lines (63 loc) · 1.88 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
{
"name": "polymer-editor-service",
"version": "2.2.0",
"description": "Static analysis for the web in your text editor!",
"homepage": "https://github.com/Polymer/polymer-editor-service",
"bugs": "https://github.com/Polymer/polymer-editor-service/issues",
"license": "BSD-3-Clause",
"bin": {
"polymer-editor-service": "bin/polymer-editor-service.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Polymer/polymer-editor-service.git"
},
"scripts": {
"clean": "touch lib && rm -rf lib",
"build": "tsc",
"prepublishOnly": "npm run clean && npm run build",
"lint": "tslint --project ./tsconfig.json",
"test": "npm run clean && npm run build && mocha && npm run lint",
"test:watch": "tsc-then -- mocha",
"format": "find src test | grep '\\.js$\\|\\.ts$' | xargs ./node_modules/.bin/clang-format --style=file -i"
},
"devDependencies": {
"@types/chai": "=4.0.5",
"@types/command-line-args": "^4.0.2",
"@types/fuzzaldrin": "^2.1.0",
"@types/mocha": "^2.2.28",
"chai": "^4",
"chai-subset": "^1.3.0",
"clang-format": "=1.0.45",
"memory-streams": "^0.1.0",
"mocha": "^3",
"source-map-support": "^0.4.2",
"tsc-then": "^1.0.1",
"tslint": "^5",
"typescript": "^2.4.2"
},
"dependencies": {
"@types/minimatch": "^3.0.1",
"@types/node": "^6",
"@types/parse5": "^2.2.34",
"@types/split": "^0.3.28",
"@types/winston": "^2.2.0",
"command-line-args": "^4.0.7",
"dom5": "^2.0.1",
"fuzzaldrin": "^2.1.0",
"minimatch": "^3.0.4",
"parse5": "^2.2.3",
"plylog": "^0.5.0",
"polymer-analyzer": "=3.0.0-pre.21",
"polymer-linter": "=3.0.0-pre.5",
"polymer-project-config": "^3.11.1",
"semver": "^5.4.1",
"split": "^1.0.0",
"vscode-languageserver": "=4.0.0",
"vscode-uri": "^1.0.0",
"winston": "^2.3.1"
},
"engines": {
"node": ">=6"
}
}