This repository has been archived by the owner on Oct 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
62 lines (62 loc) · 1.86 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
{
"name": "@polymer/gen-typescript-declarations",
"version": "1.3.0",
"description": "Generate TypeScript type declarations for Polymer components.",
"main": "lib/gen-ts.js",
"types": "lib/gen-ts.d.ts",
"bin": "bin/gen-tsd",
"directories": {
"lib": "lib"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"@types/doctrine": "0.0.3",
"@types/fs-extra": "^5.0.0",
"@types/glob": "^5.0.35",
"command-line-args": "^5.0.1",
"command-line-usage": "^5.0.2",
"doctrine": "^2.0.0",
"escodegen": "^1.9.0",
"fs-extra": "^6.0.1",
"glob": "^7.1.2",
"minimatch": "^3.0.4",
"polymer-analyzer": "^3.0.2",
"vscode-uri": "^1.0.3"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^5.2.3",
"bower": "^1.8.2",
"chai": "^4.1.2",
"clang-format": "^1.1.0",
"mocha": "^5.0.0",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.0",
"tsc-then": "^1.0.1",
"typescript": "^2.7.2"
},
"scripts": {
"clean": "rimraf lib",
"format": "find src -name '*.ts' -not -path 'src/test/fixtures/*' -not -path 'src/test/goldens/*' | xargs clang-format --style=file -i",
"build": "npm run clean && tsc",
"build:watch": "tsc --watch",
"prepack": "npm run build",
"prepublishOnly": "npm run test",
"test": "npm run test:setup && npm run build && mocha",
"test:watch": "tsc-then -- mocha --color",
"test:setup": "scripts/setup-fixtures.sh",
"test:make-goldens": "npm run build && scripts/make-goldens.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Polymer/gen-typescript-declarations.git"
},
"author": "The Polymer Project Authors",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Polymer/gen-typescript-declarations/issues"
},
"homepage": "https://github.com/Polymer/gen-typescript-declarations#readme"
}