-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
39 lines (39 loc) · 1.18 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
{
"name": "@polymer/decorators",
"version": "3.0.0",
"description": "TypeScript decorators for Polymer",
"main": "lib/decorators.js",
"scripts": {
"clean": "rimraf lib/",
"format": "find src/ -name '*.ts' -print | xargs clang-format --style=file -i",
"lint": "tslint --project . --format stylish",
"build": "npm run clean && tsc",
"prepack": "npm run build",
"test": "npm run build && npm run lint && wct --plugin local",
"wct:sauce": "wct --plugin sauce"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Polymer/polymer-decorators.git"
},
"author": "The Polymer Project Authors",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Polymer/polymer-decorators/issues"
},
"homepage": "https://github.com/Polymer/polymer-decorators#readme",
"dependencies": {
"@polymer/polymer": "^3.0.5"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@webcomponents/webcomponentsjs": "^2.0.4",
"clang-format": "^1.2.4",
"rimraf": "^2.6.2",
"tslint": "^5.11.0",
"typescript": "^3.0.1",
"wct-browser-legacy": "^1.0.1",
"web-component-tester": "^6.7.1"
}
}