-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "polymerts-to-polymer-decorators",
"version": "0.1.0",
"description": "This is a tool to convert a PolymerTS project to a polymer-decorators project",
"main": "index.js",
"scripts": {
"compile": "tsc",
"build": "tsc --outDir ./",
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "typedoc --out ./doc/ --exclude \"**/src/data/**/*.*\" ./src/"
},
"keywords": [
"polymerts",
"polymer",
"polymer-decorators"
],
"author": {
"name": "Keith Strickland",
"email": "keith@redpillnow.com",
"url": "http://keithstric.me"
},
"repository": {
"type": "git",
"url": "https://github.com/RedPillNow/polymerts-to-polymer-decorators"
},
"bugs": {
"url": "https://github.com/RedPillNow/polymerts-to-polymer-decorators/issues"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^9.4.5"
},
"dependencies": {
"chalk": "^2.4.1",
"glob": "^7.1.2",
"polymerts-models": "git+https://github.com/RedPillNow/polymerts-models.git",
"rimraf": "^2.6.2",
"typescript": "^2.9.2"
}
}