-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 1.31 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
{
"dependencies": {
"@types/minimatch": "3.0.3",
"cheerio": "1.0.0-rc.2",
"minimatch": "3.0.3",
"typescript": "4.0.5"
},
"scripts": {
"test": "mocha -r ts-node/register src/**/*_test.ts",
"test-watch": "mocha -r ts-node/register --watch --watch-files ./, src/**/*_test.ts",
"build": "tsc",
"format": "gts fix",
"format-lint": "gts lint"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/cheerio": "^0.22.2",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.22",
"chai": "^4.2.0",
"gts": "^3.0.2",
"mocha": "^8.2.1",
"ts-node": "^9.0.0"
},
"name": "twinkie",
"description": "Automatic template interfaces from polymer template files",
"version": "1.1.5",
"main": "src/index.js",
"bin": {
"twinkie": "bin.js"
},
"files": [
"src/**/*.js",
"src/**/*.ts",
"bin.js",
"package.json",
"tsconfig.json",
"LICENSE",
"README.md"
],
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samccone/template.git"
},
"keywords": [
"polymer",
"template"
],
"author": "Sam Saccone",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/samccone/template/issues"
},
"homepage": "https://github.com/samccone/template#readme"
}